-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
44 lines (39 loc) · 1.05 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
[build-system]
requires = ["hatchling", "hatch-vcs"]
build-backend = "hatchling.build"
[project]
name = "CosmoAPI"
#description = "CAPIVARA: Cosmology API for Validation, Analysis, and Research Applications"
description = "DESC's `Press Enter for Cosmology` API"
readme = "README.md"
requires-python = ">=3.12"
license = {file = "LICENSE"}
maintainers = [
{name = "Arthur Loureiro", email = "[email protected]"},
]
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
]
dependencies = [
"numpy>=1.24.0",
"scipy>=1.9.0",
"astropy>=5.2.0",
"pytest>=7.2.5",
"sacc>=0.12",
"pyccl>=3.0.2",
"jsonargparse[signatures]>=4.0",
"pytest",
"pytest-cov",
]
keywords = ["desc", "python", "inference", "firecrown", "cosmology"]
dynamic = ["version"]
[tool.setuptools.packages.find]
where = ["CosmoAPI"]
[tool.flake8]
max-line-length = 100
[tool.hatch.metadata]
allow-direct-references = true
[tool.hatch.version]
path = "CosmoAPI/_version.py"