-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpyproject.toml
88 lines (84 loc) · 1.68 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
84
85
86
87
88
[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"
[project]
name = "astromartini"
version = "2.1.9"
authors = [
{ name="Kyle Oman", email="[email protected]" },
]
description="Synthetic datacube creation from simulations."
readme = "README.rst"
requires-python = ">=3.9"
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Operating System :: OS Independent",
]
dependencies = [
"numpy",
"scipy",
"astropy",
"tqdm",
]
[project.urls]
"Homepage" = "https://github.com/kyleaoman/martini"
"Bug Tracker" = "https://github.com/kyleaoman/martini/issues"
"Documentation" = "https://martini.readthedocs.io/en/latest"
[project.optional-dependencies]
hdf5_output = ["h5py"]
eaglesource = [
"hdecompose",
"pyread_eagle",
"eagleSqlTools",
]
tngsource = ["hdecompose", "h5py", "requests", "six"]
magneticumsource = ["g3t"]
simbasource = ["h5py"]
swiftgalaxysource = [
"swiftsimio",
"swiftgalaxy",
]
colibresource = [
"swiftsimio",
"swiftgalaxy",
"velociraptor",
]
firesource = [
"utilities-awetzel",
"gizmo-analysis",
"halo-analysis",
]
[tool.numpydoc_validation]
checks = [
"GL01",
"GL02",
"GL03",
"GL05",
"GL06",
"GL07",
"GL08",
"GL10",
"SS01",
"SS02",
"SS03",
"SS04",
"PR01",
"PR02",
"PR03",
"PR04",
"PR05",
"PR06",
"PR07",
"PR08",
"PR10",
"RT03",
"RT04",
"RT05",
]
exclude = [
'\.__init__$',
'__init__',
'__version__',
'_illustris_tools',
]