-
Notifications
You must be signed in to change notification settings - Fork 13
/
pyproject.toml
52 lines (48 loc) · 1.46 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
[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"
[tool.setuptools]
packages = [
"swiftsimio",
"swiftsimio.initial_conditions",
"swiftsimio.metadata",
"swiftsimio.metadata.cosmology",
"swiftsimio.metadata.metadata",
"swiftsimio.metadata.particle",
"swiftsimio.metadata.unit",
"swiftsimio.metadata.writer",
"swiftsimio.metadata.soap",
"swiftsimio.visualisation",
"swiftsimio.visualisation.projection_backends",
"swiftsimio.visualisation.slice_backends",
"swiftsimio.visualisation.tools",
"swiftsimio.visualisation.smoothing_length",
]
[project]
name = "swiftsimio"
version="9.0.2"
authors = [
{ name="Josh Borrow", email="[email protected]" },
]
description="SWIFTsim (swiftsim.com) i/o routines for python."
readme = "README.md"
requires-python = ">3.10.0"
classifiers = [
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"License :: OSI Approved :: GNU Lesser General Public License v3 or later (LGPLv3+)",
"Operating System :: OS Independent",
]
dependencies = [
"numpy",
"h5py",
"unyt>=2.9.0",
"numba>=0.50.0",
]
[project.urls]
"Homepage" = "https://github.com/SWIFTSIM/swiftsimio"
"Bug Tracker" = "https://github.com/SWIFTSIM/swiftsimio/issues"
"Documentation" = "https://swiftsimio.readthedocs.io/en/latest"
[project.scripts]
swiftsnap = "swiftsimio.swiftsnap:swiftsnap"