-
Notifications
You must be signed in to change notification settings - Fork 14
/
pyproject.toml
83 lines (75 loc) · 1.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
78
79
80
81
82
83
[build-system]
requires = [
"setuptools>=61",
"setuptools_scm>=6.2",
]
build-backend = "setuptools.build_meta"
[project]
name = "abacusutils"
authors = [{name = "Daniel Eisenstein"},
{name = "Philip Pinto"},
{name = "Lehman Garrison", email = "[email protected]"},
{name = "Nina Maksimova"},
{name = "Sownak Bose"},
{name = "Boryana Hadzhiyska"},
{name = "Sihan (Sandy) Yuan"},
]
description = "Python code to read halo catalogs and other Abacus N-body data products"
dependencies = [
'numpy>=1.16',
'blosc>=1.9.2',
'astropy>=4.0.0',
'scipy>=1.5.0',
'numba>=0.56',
'asdf>=3.1.0',
'h5py',
'pyyaml',
'msgpack>=1',
'parallel_numpy_rng>=0.1.2',
"asdf-astropy>=0.3; python_version>='3.8'",
"importlib_resources; python_version<'3.9'",
]
readme = "README.md"
requires-python = ">=3.9"
urls = {Repository = "https://github.com/abacusorg/abacusutils"}
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
]
dynamic = ["version"]
[project.scripts]
pipe_asdf = "abacusnbody.data.pipe_asdf:main"
[project.entry-points."asdf.extensions"]
abacusutils = "abacusnbody.data.asdf:AbacusExtension"
[project.optional-dependencies]
all = [
'zenbu-fftw>=1',
'classy',
'numpy<2', # for classy
'Corrfunc>=2',
'emcee',
'schwimmbad',
'getdist',
'dynesty',
'dill',
'click',
]
docs = [
'sphinx >= 4.2',
'sphinx-book-theme >= 0.3',
'myst_nb >= 0.17.1',
]
test = [
'abacusutils[all]',
'pytest',
]
[tool.setuptools]
include-package-data = true
[tool.setuptools.packages.find]
include = ["abacusnbody*"]
[tool.setuptools_scm]
write_to = "abacusnbody/version.py"
write_to_template = '__version__ = "{version}"'
[tool.ruff.format]
quote-style = "single"
docstring-code-format = true