-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
93 lines (82 loc) · 1.8 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.14.0"]
build-backend = "hatchling.build"
[project]
name = "simdec"
version = "1.3.0"
description = "Sensitivity analysis using simulation decomposition"
readme = "README.md"
requires-python = ">=3.10"
license = "BSD-3-Clause"
authors = [
{ name = "Pamphile Roy" },
]
maintainers = [
{ name = "simdec contributors" },
]
classifiers = [
"Intended Audience :: End Users/Desktop",
"Intended Audience :: Developers",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: BSD License",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
]
dependencies = [
"numpy",
"pandas",
"SALib",
"seaborn",
]
[project.optional-dependencies]
dashboard = [
"panel>=1.4.5",
"cryptography",
]
test = [
"pytest",
"pytest-cov",
]
doc = [
"sphinx",
"pydata-sphinx-theme",
"accessible-pygments",
"numpydoc",
"myst-nb",
]
dev = [
"simdec[doc,test,dashboard]",
"watchfiles",
"pre-commit",
"hatch",
]
[project.urls]
homepage = "https://www.simdec.fi/"
documentation = "https://simdec.readthedocs.io"
source = "https://github.com/Simulation-Decomposition/simdec-python"
[tool.hatch]
build.targets.wheel.packages = ["src/simdec"]
build.targets.sdist.exclude = [
".github",
"docs",
"panel",
"tests",
"*.rst",
"*.yml",
".*",
"Makefile",
"Dockerfile",
]
[project.entry-points."panel.auth"]
custom_google = "simdec.auth:CustomGoogleLoginHandler"
[tool.pytest.ini_options]
addopts = "--durations 10"
testpaths = [
"tests",
]
[tool.ruff.per-file-ignores]
"**/__init__.py" = ["F403", "F405"]