-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathpyproject.toml
96 lines (89 loc) · 2.01 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
89
90
91
92
93
94
95
96
[build-system]
requires = [
"setuptools>=61.2",
"setuptools_scm[toml]>=7.0.1",
]
build-backend = "setuptools.build_meta"
[project]
name = "ytree"
description = "An extension of yt for working with merger tree data."
authors = [
{ name = "Britton Smith", email = "[email protected]" },
]
keywords = [
"simulation",
"merger tree",
"astronomy",
"astrophysics"
]
readme = "README.md"
classifiers = [
"Development Status :: 5 - Production/Stable",
"Environment :: Console",
"Intended Audience :: Science/Research",
"Topic :: Scientific/Engineering :: Astronomy",
"License :: OSI Approved :: BSD License",
"Operating System :: MacOS :: MacOS X",
"Operating System :: POSIX :: Linux",
"Operating System :: Unix",
"Natural Language :: English",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
]
requires-python = ">=3.9"
dependencies = [
"configparser",
"h5py",
"more_itertools>=8.4",
"numpy",
"unyt>=3.0.1",
"yt>=4.2",
]
dynamic = [
"version",
]
[project.optional-dependencies]
parallel = [
"mpi4py",
]
dev = [
"codecov",
"flake8",
"pydot",
"pytest>=3.6",
"pytest-cov",
"twine",
"wheel",
"sphinx",
"sphinx_rtd_theme",
]
rtd = [
"codecov",
"flake8",
"pydot",
"pytest>=3.6",
"pytest-cov",
"twine",
"wheel",
"sphinx_rtd_theme",
]
[project.urls]
Homepage = "https://github.com/ytree-project/ytree"
Documentation = "https://ytree.readthedocs.io/en/stable/index.html"
Changelog = "https://ytree.readthedocs.io/en/latest/Changelog.html"
Repository = "https://github.com/ytree-project/ytree"
Issues = "https://github.com/ytree-project/ytree/issues"
[tool.setuptools]
include-package-data = true
zip-safe = false
license-files = [
"LICENSE",
]
[tool.setuptools.packages.find]
include = [
"ytree",
]
[tool.setuptools.dynamic]
version = {attr = "ytree.__version__"}