-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
47 lines (42 loc) · 1.06 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
[project]
name = "DaSPi"
version = "1.1.1"
description = "Visualize and analyze your data with DaSPi. This package is designed for users who want to find relevant influencing factors in processes and validate improvements."
authors = [
{name = "Reto Jäggli", email = "[email protected]"},
]
dependencies = [
"matplotlib>=3.8.2",
"pandas>=2.1.4",
"statsmodels>=0.14.1",
"scipy>=1.11.4",
"numpy>=1.26.3",
]
requires-python = ">=3.11"
readme = "README.md"
license = {text = "BSD-3-Clause"}
[project.urls]
Repository = "https://github.com/j4ggr/DaSPi"
Documentation = "https://j4ggr.github.io/DaSPi/"
Changelog = "https://j4ggr.github.io/DaSPi/Changelog"
[build-system]
requires = ["pdm-backend"]
build-backend = "pdm.backend"
[tool.pdm]
distribution = true
[tool.pdm.dev-dependencies]
doc = [
"mkdocs>=1.5.3",
"mkdocstrings[python]>=0.24.1",
"mkdocs-material>=9.5.13"
]
[dependency-groups]
test = [
"pytest>=7.4.4",
"pytest-cov>=6.0.0",
]
doc = [
"mkdocs>=1.5.3",
"mkdocstrings[python]>=0.24.1",
"mkdocs-material>=9.5.13"
]