forked from handley-lab/anesthetic
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
77 lines (72 loc) · 2.9 KB
/
pyproject.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
[build-system]
requires = ["setuptools"]
build-backend = "setuptools.build_meta"
[project]
name = "anesthetic"
dynamic = ["version"]
maintainers = [
{ name="Will Handley", email="[email protected]" },
{ name="Lukas Hergt", email="[email protected]" },
]
authors = [
{ name="Will Handley", email="[email protected]" },
{ name="Lukas Hergt", email="[email protected]" },
{ name="Adam Ormondroyd", email="[email protected]" },
{ name="Harry Bevins", email="[email protected]" },
{ name="Johannes Buchner", email="[email protected]" },
{ name="Ethan Carragher", email="[email protected]" },
{ name="Andrew Fowlie", email="[email protected]" },
{ name="Thomas Gessey-Jones", email="[email protected]"},
{ name="Stefan Heimersheim", email="[email protected]" },
{ name="Pablo Lemos", email="[email protected]" },
{ name="Toby Lovick", email="[email protected]"},
{ name="Deborah Odunuyi", email="[email protected]"},
{ name="Aleksandr Petrosyan", email="[email protected]" },
{ name="Liangliang Su", email="[email protected]"},
{ name="David Yallup", email="[email protected]" },
{ name="Dily Ong", email="[email protected]" }
]
description = "nested sampling post-processing"
readme = "README.rst"
license = {file = "LICENSE"}
requires-python = ">=3.8"
dependencies = [
"scipy<2.0.0",
"numpy>=1.26.0,<3.0.0",
"pandas~=2.2.0",
"matplotlib>=3.6.1,<3.10.0",
]
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"Intended Audience :: Science/Research",
"Natural Language :: English",
"Topic :: Scientific/Engineering",
"Topic :: Scientific/Engineering :: Astronomy",
"Topic :: Scientific/Engineering :: Physics",
"Topic :: Scientific/Engineering :: Visualization",
"Topic :: Scientific/Engineering :: Information Analysis",
"Topic :: Scientific/Engineering :: Mathematics",
]
[project.urls]
"Homepage" = "https://github.com/handley-lab/anesthetic"
"Bug Tracker" = "https://github.com/handley-lab/anesthetic/issues"
"Documentation" = "https://anesthetic.readthedocs.io/en/latest/"
"JOSS paper" = "https://joss.theoj.org/papers/10.21105/joss.01414"
[project.optional-dependencies]
docs = ["sphinx>=4.2.0", "sphinx_rtd_theme>=1.2.2", "sphinx-copybutton",
"sphinx-autodoc-typehints", "numpydoc"]
test = ["pytest", "pytest-cov", "flake8", "pydocstyle", "packaging", "pre-commit"]
ultranest = ["h5py"]
astropy = ["astropy"]
fastkde = ["fastkde"]
getdist = ["getdist"]
hdf5 = ["tables==3.8.0"]
all = ["h5py", "astropy", "fastkde", "getdist", "tables"]
[project.scripts]
anesthetic = "anesthetic.scripts:gui"
[tool.setuptools.dynamic]
version = {attr = "anesthetic._version.__version__"}