-
Notifications
You must be signed in to change notification settings - Fork 27
Expand file tree
/
Copy pathpyproject.toml
More file actions
92 lines (86 loc) · 1.54 KB
/
Copy pathpyproject.toml
File metadata and controls
92 lines (86 loc) · 1.54 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
92
[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"
[project]
name = "CompactObject_TOV"
version = "2.1.1"
authors = [
{ name="Chun Huang", email="author@example.com" },
]
description = "Bayesian inference framework for neutron-star equations of state"
readme = "README.md"
license = { file = "LICENSE" }
requires-python = ">=3.8"
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)",
"Operating System :: OS Independent",
]
dependencies = [
"corner",
"h5py",
"matplotlib",
"numpy",
"pandas",
"numba",
"requests",
"scipy",
"sympy",
"ultranest",
]
[project.optional-dependencies]
notebooks = [
"ipykernel",
"jupyter",
"nbconvert",
]
fast = [
"NumbaMinpack",
]
docs = [
"decorator",
"ipynb",
"nbsphinx",
"sphinx",
"sphinx-rtd-theme",
"sphinxcontrib-websupport",
]
test = [
"pytest",
]
[project.urls]
Homepage = "https://github.com/ChunHuangPhy/CompactObject"
Issues = "https://github.com/ChunHuangPhy/CompactObject/issues"
[tool.setuptools.packages.find]
include = [
"EOSgenerators*",
"InferenceWorkflow*",
"postprocessing*",
"TOVsolver*",
]
exclude = [
"docs*",
"Emcee_Workflow*",
"JOSS*",
"Test_Case*",
]
[tool.setuptools.package-data]
EOSgenerators = [
"filesCompose/*",
"filesLaL/*",
]
InferenceWorkflow = [
"data/*",
]
[tool.pytest.ini_options]
testpaths = [
"tests",
]
addopts = [
"-ra",
"--strict-config",
"--strict-markers",
]
filterwarnings = [
"error::RuntimeWarning",
]