-
Notifications
You must be signed in to change notification settings - Fork 12
Expand file tree
/
Copy pathpyproject.toml
More file actions
91 lines (79 loc) · 2.17 KB
/
pyproject.toml
File metadata and controls
91 lines (79 loc) · 2.17 KB
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
78
79
80
81
82
83
84
85
86
87
88
89
90
91
[build-system]
requires = ["setuptools>=79.0", "setuptools-scm", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "autofit"
dynamic = ["version"]
description = "Classy Probabilistic Programming"
readme = { file = "README.rst", content-type = "text/x-rst" }
license = { text = "MIT" }
requires-python = ">=3.12"
authors = [
{ name = "James Nightingale", email = "James.Nightingale@newcastle.ac.uk" },
{ name = "Richard Hayes", email = "richard@rghsoftware.co.uk" },
]
classifiers = [
"Intended Audience :: Science/Research",
"Topic :: Scientific/Engineering :: Physics",
"Natural Language :: English",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13"
]
keywords = ["cli"]
dependencies = [
"autoconf",
"array_api_compat",
"anesthetic==2.8.14; python_version < '3.13'",
"anesthetic>=2.9.0; python_version >= '3.13'",
"corner==2.2.2",
"decorator>=4.2.1",
"dill>=0.3.1.1",
"dynesty==2.1.5",
"typing-inspect>=0.4.0",
"emcee>=3.1.6",
"gprof2dot==2021.2.21",
"matplotlib",
"numpydoc>=1.0.0",
"h5py>=3.11.0",
"SQLAlchemy>=2.0.32,<2.1.0",
"scipy<=1.17.1",
"astunparse==1.6.3",
"threadpoolctl>=3.1.0",
"timeout-decorator==0.5.0",
"xxhash<=3.4.1",
"networkx==3.1",
"pyvis==0.3.2",
"psutil==6.1.0"
]
[project.urls]
Homepage = "https://github.com/rhayes777/PyAutoFit"
[tool.setuptools]
include-package-data = true
[tool.setuptools.packages.find]
exclude = ["docs", "test_autofit", "test_autofit*"]
[tool.setuptools_scm]
version_scheme = "post-release"
local_scheme = "no-local-version"
[project.optional-dependencies]
optional=[
"astropy>=5.0",
"getdist==1.4",
"nautilus-sampler==1.0.5",
"zeus-mcmc==2.5.4",
]
docs=[
"sphinx",
"furo",
"myst-parser",
"sphinx_copybutton",
"sphinx_design",
"sphinx_inline_tabs",
"sphinx_autodoc_typehints"
]
test = ["pytest"]
dev = ["pytest", "black"]
[tool.setuptools.package-data]
"autofit.config" = ["*"]
[tool.pytest.ini_options]
testpaths = ["test_autofit"]