forked from SALib/SALib
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
93 lines (83 loc) · 1.84 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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
[build-system]
requires = ["hatchling>=1.8.1"]
build-backend = "hatchling.build"
[project]
name = "SALib"
dynamic = ["version"]
description = "Tools for global sensitivity analysis. Contains Sobol', Morris, FAST, DGSM, PAWN, HDMR, Moment Independent and fractional factorial methods"
readme = "README.rst"
requires-python = ">=3.8"
license = "MIT"
authors = [
{ name = "Jon Herman", email = "[email protected]" },
{ name = "Will Usher" },
{ name = "Takuya Iwanaga" },
]
maintainers = [
{ name = "SALib contributors" },
]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"License :: OSI Approved :: MIT License",
"Intended Audience :: End Users/Desktop",
"Intended Audience :: Developers",
"Intended Audience :: Science/Research",
"Operating System :: OS Independent",
]
dependencies = [
"numpy>=1.20.3",
"scipy>=1.7.3",
"matplotlib>=3.2.2",
"pandas>=1.1.2",
"multiprocess",
]
[project.optional-dependencies]
distributed = [
"pathos>=0.2.5",
]
test = [
"SALib[distributed]",
"pytest",
"pytest-cov",
]
doc = [
"sphinx",
"myst_parser",
"numpydoc",
"pydata-sphinx-theme>=0.10"
]
dev = [
"SALib[distributed]",
"SALib[test]",
"SALib[doc]",
"pre-commit",
"hatch",
]
[project.scripts]
salib = "SALib.scripts.salib:main"
[project.urls]
Documentation = "https://salib.readthedocs.io"
"Source code" = "https://github.com/SALib/SALib"
[tool.hatch]
version.path = "src/SALib/__init__.py"
build.targets.sdist.exclude = [
".github",
"docs",
"examples",
"paper",
"tests",
"*.md",
"*.rst",
"*.yml",
"*.cff",
".*",
]
[tool.pytest.ini_options]
addopts = "--durations 10"
testpaths = [
"tests",
]