-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
37 lines (33 loc) · 1.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
# pyproject.toml
[build-system]
requires = ["setuptools>=61.0.0", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "py21cmcast"
version = "1.0.4"
description = "Fisher forecasts with 21cm experiments"
readme = "README.md"
authors = [{ 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",
"Operating System :: Microsoft :: Windows",
]
keywords = ["21cm", "fisher", "statistics", "cosmology"]
dependencies = [
"numpy>=1.16.5",
"matplotlib>=3.4.3",
"powerbox>=0.7.3",
"configparser>=6.0.0",
"astropy>=5.0.0",
"scipy",
]
requires-python = ">=3.6"
[project.optional-dependencies]
dev = ["21cmSense>=2.0.0", "21cmfast>=3.0.0",]
[project.urls]
Homepage = "https://github.com/gaetanfacchinetti/21cmCAST"