forked from nanoomlee/HYREC-2
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
40 lines (33 loc) · 1.06 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
# pyproject.toml
[build-system]
requires = ["setuptools>=61.0.0", "wheel", "cython"]
build-backend = "setuptools.build_meta"
[project]
name = "pyhyrec"
version = "1.0.0"
description = "A code for cosmological recombination history"
readme = "README.md"
authors = [{name = "Nanoom Lee"}, {name = "Yacine Ali-Haimoud"}, {name = "Chris Hirata"}, { name = "Gaétan Facchinetti", email = "gaetanfacc@gmail.com" }]
license = { file = "LICENSE" }
classifiers = [
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Operating System :: Unix",
"Operating System :: MacOS :: MacOS X",
]
keywords = ["physics", "cosmology", "recombination"]
dependencies = [
"cython",
"numpy",
"scipy>=1.13.0",
]
requires-python = ">=3.6"
[project.optional-dependencies]
dev = []
[project.urls]
Homepage = "/~https://github.com/nanoomlee/HYREC-2"
PythonVersion = "/~https://github.com/gaetanfacchinetti/HYREC-2"
[tool.pytest.ini_options]
minversion = "6.0"
testpaths = ["tests"]