-
Notifications
You must be signed in to change notification settings - Fork 1
/
pyproject.toml
52 lines (47 loc) · 1.67 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
49
50
51
52
[build-system]
requires = ["setuptools", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "cobaya-cosmo"
dynamic = ["version"]
authors = [
{ name = "Jesus Torrado" },
{ name = "Antony Lewis" },
]
description = "Cosmological codes, wrappers and links to external packages for the Cobaya package"
readme = "README.rst"
license = { file = "LICENCE.txt" }
keywords = ["cosmology", "inference", "monte carlo", "mcmc"]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Operating System :: OS Independent",
"Environment :: Console",
"Intended Audience :: Science/Research",
"Topic :: Scientific/Engineering :: Astronomy",
"License :: OSI Approved :: GNU Lesser General Public License v3 (LGPLv3)",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12"
]
requires-python = ">=3.8.0"
dependencies = [
# "numpy>=1.17.0", "scipy>=1.5", "pandas>=1.0.1",
# "PyYAML>=5.1", "requests>=2.18", "py-bobyqa>=1.4",
# "GetDist>=1.3.1", "fuzzywuzzy>=0.17", "packaging", "tqdm",
# "portalocker>=2.3.0", "dill>=0.3.3"
]
[project.optional-dependencies]
#test = ["pytest", "pytest-forked", "flaky", "mpi4py", "iminuit"]
#gui = ["pyside6", "matplotlib"]
#docs = [
# "sphinx", "sphinx_rtd_theme>=1.0", "sphinxcontrib-jquery",
# "sphinx-autodoc-typehints", "sphinxcontrib-programoutput",
#]
[tool.setuptools.dynamic]
version = { attr = "cobaya_cosmo.__version__" }
[tool.setuptools.package-data]
"*" = ["*.yaml", "*.bibtex"]
[tool.setuptools.packages.find]
exclude = ["docs", "tests"]