-
Notifications
You must be signed in to change notification settings - Fork 87
/
pyproject.toml
56 lines (52 loc) · 1.15 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
53
54
55
56
[build-system]
requires = ["setuptools>=45"]
build-backend = "setuptools.build_meta"
[project]
name = "chaospy"
version = "4.3.17"
license = {text = "MIT license"}
description = "Numerical tool for performing uncertainty quantification"
readme = "README.rst"
classifiers = [
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Science/Research",
"Topic :: Scientific/Engineering :: Mathematics",
"License :: OSI Approved :: MIT License",
"Natural Language :: English",
]
requires-python = ">=3.7"
dependencies = [
"numpy >=1.20",
"numpoly >=1.2.12",
"scipy",
"setuptools >=40.9.0",
"importlib-metadata"
]
[project.optional-dependencies]
dev = [
"openturns",
"scikit-learn",
"gstools",
"jupyter",
"matplotlib",
"nbsphinx",
"sphinxcontrib-bibtex",
"black ==22.10.0",
"pylint ==2.15.5",
"pydocstyle ==3.0.0",
"pydata_sphinx_theme ==0.11.0",
"sympy",
"pytest",
"pytest-cov",
"codecov",
"coverage >=5.0",
"Sphinx",
"sphinx_automodapi",
"build",
"twine",
]
[tool.pytest.ini_options]
filterwarnings = [
"error::DeprecationWarning",
"ignore:elementwise:DeprecationWarning"
]