-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpyproject.toml
More file actions
65 lines (57 loc) · 1.97 KB
/
pyproject.toml
File metadata and controls
65 lines (57 loc) · 1.97 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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
[build-system]
requires = ["setuptools"]
build-backend = "setuptools.build_meta"
[project]
name = "gpry"
dynamic = ["version"]
authors = [
{name = "Jonas El Gammal", email = "jonas.el.gammal@rwth-aachen.de"},
{name = "Jesus Torrado"} ,
{name = "Nils Schoeneberg"},
{name = "Christian Fidler"},
]
description = "A package for fast bayesian inference of expensive Likelihoods"
readme = {file = "README.rst", content-type = "text/x-rst"}
license = {file = "LICENSE"}
keywords = ["inference", "gaussianprocesses", "sampling", "cosmology"]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Operating System :: OS Independent",
"Environment :: Console",
"Intended Audience :: Science/Research",
"Topic :: Scientific/Engineering",
"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",
"Programming Language :: Python :: 3.13",
]
requires-python = ">=3.8.0"
dependencies = [
"scikit-learn", "dill", "tqdm", "ultranest", "pandas",
"getdist", "numpy", "scipy", "matplotlib", "h5py"
]
[project.optional-dependencies]
dev = ["flake8", "flake8-pyproject", "pre-commit"] # " ## pydocstyle
test = ["pytest", "pytest-xdist", "flaky"]
docs = ["sphinx", "sphinx_book_theme", "sphinx-favicon"]
[tool.setuptools.dynamic]
version = { attr = "gpry.__version__" }
[tool.setuptools.package-data]
"*" = ["*.yaml"]
[tool.setuptools.packages.find]
exclude = ["docs", "tests", "examples"]
[project.urls]
Homepage = "https://gpry.readthedocs.io"
Documentation = "https://gpry.readthedocs.io"
Source = "https://github.com/jonaselgammal/GPry"
Issues = "https://github.com/jonaselgammal/GPry/issues"
[tool.flake8]
ignore = ['E231', 'E241']
per-file-ignores = [
'__init__.py:F401',
]
max-line-length = 88
count = true