-
Notifications
You must be signed in to change notification settings - Fork 8
/
pyproject.toml
36 lines (32 loc) · 1.26 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
[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"
[tool.setuptools]
packages = ["velociraptor", "velociraptor.catalogue", "velociraptor.fitting_formulae", "velociraptor.observations", "velociraptor.autoplotter", "velociraptor.particles", "velociraptor.swift", "velociraptor.tools"]
[project]
name = "velociraptor-python"
version="0.18.0"
authors = [
{ name="Josh Borrow", email="[email protected]" },
{ name="Kyle Oman", email="[email protected]" },
]
description="Velociraptor catalogue reading routines."
readme = "README.md"
requires-python = ">3.10.0"
classifiers = [
"License :: OSI Approved :: GNU Lesser General Public License v3 or later (LGPLv3+)",
"Operating System :: OS Independent",
]
dependencies = [
"numpy",
"h5py",
"unyt>=2.6.0",
"astropy",
]
[project.urls]
"Homepage" = "https://github.com/SWIFTSIM/velociraptor-python"
"Bug Tracker" = "https://github.com/SWIFTSIM/velociraptor-python/issues"
"Documentation" = "https://velociraptor-python.readthedocs.io/en/latest"
[project.scripts]
velociraptor-plot = "velociraptor.velociraptor_plot:velociraptor_plot"
velociraptor-compute-box-size-correction = "velociraptor.velociraptor_compute_box_size_correction:velociraptor_compute_box_size_correction"