-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
42 lines (38 loc) · 973 Bytes
/
pyproject.toml
File metadata and controls
42 lines (38 loc) · 973 Bytes
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
[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"
[tool.setuptools.packages.find]
[project]
name = "SOAP"
version = "0.1.1"
description = "MPI parallel Python code to compute properties of halos in SWIFT n-body simulations"
readme = "README.md"
requires-python = ">=3.10"
license = {text = "GNU LGPLv3+"}
authors = [
{name = "Rob McGibbon", email = "mcgibbon@strw.leidenuniv.nl"}
]
classifiers = [
"License :: OSI Approved :: GNU Lesser General Public License v3 or later (LGPLv3+)",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
]
dependencies = [
"mpi4py",
"h5py",
"numpy>=2",
"unyt>=3",
"astropy>=6",
"scipy",
"matplotlib",
"psutil",
"virgodc",
]
[project.optional-dependencies]
test = [
"pytest-mpi",
"numba",
]
[project.urls]
"Homepage" = "https://github.com/SWIFTSIM/SOAP"
"Bug Tracker" = "https://github.com/SWIFTSIM/SOAP/issues"