-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
48 lines (42 loc) · 1.16 KB
/
pyproject.toml
File metadata and controls
48 lines (42 loc) · 1.16 KB
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
45
46
47
48
[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 = "arthur.loureiro@fysik.su.se"},
{name = "Vitor Gozzi", email = "vitormg99@cbpf.br"},
]
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"
[project.scripts]
CosmoAPI = "CosmoAPI.__main__:main"