-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
48 lines (38 loc) · 1.33 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
45
46
47
48
[build-system]
# requires = ["setuptools >= 40.6.0", "wheel", "numpy"]
# build-backend = "setuptools.build_meta"
requires = ["hatchling", "numpy"]
build-backend = "hatchling.build"
[project]
name = "train_pybird_emulators"
dynamic = ["version"]
license = {text = "MIT License"}
description = "A package to train JAX-based emulators for PyBird "
readme = {file = "README.md", content-type = "text/markdown"}
classifiers = [
"Intended Audience :: Science/Research",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Natural Language :: English",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Operating System :: OS Independent",
]
dependencies = [
]
authors = [
{name = "Alexander Reeves", email = "[email protected]"},
]
[project.urls]
Repository = "https://cosmo-docs.phys.ethz.ch/train_pybird_emulators"
[project.optional-dependencies]
dev = ["twine", "pytest", "pytest-cov", "pytest-regtest", "isort", "ruff", "pre-commit"]
docs = ["sphinx<7", "sphinx-pynpoint-theme", "myst-parser"]
[tool.hatch.version]
path = "src/train_pybird_emulators/__init__.py"
pattern = "__version__ = \"(?P<version>[^']+)\""
[tool.pytest.ini_options]
addopts = "-v -ra"
testpaths = ["tests"]
filterwarnings = ["ignore:invalid"]