-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
73 lines (62 loc) · 1.51 KB
/
pyproject.toml
File metadata and controls
73 lines (62 loc) · 1.51 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
66
67
68
69
70
71
72
73
[build-system]
requires = ["setuptools>=68", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "pystatsv1"
version = "0.22.4"
description = "PyStatsV1: applied statistics labs in Python."
readme = "README.md"
requires-python = ">=3.10"
authors = [
{ name = "PyStatsV1 contributors" }
]
license = "MIT"
license-files = ["LICENSE"]
# Runtime dependencies are installed from requirements.txt in CI.
dependencies = [
"numpy>=1.24",
"pandas>=2.0",
"scipy>=1.10",
"statsmodels>=0.14",
"matplotlib>=3.8",
"pingouin>=0.5",
"scikit-learn>=1.3",
]
[project.optional-dependencies]
# Student bundle: includes pytest so you can run the Workbook checks.
workbook = [
"pytest>=8.2",
]
# Contributor bundle: formatting + lint + tests.
dev = [
"pytest>=8.2",
"ruff>=0.6",
"black>=24.0",
]
# Docs bundle: for building Sphinx locally.
docs = [
"sphinx>=8.0",
"sphinx-rtd-theme>=2.0",
"myst-parser>=3.0",
]
[project.scripts]
pystatsv1 = "pystatsv1.cli:main"
pystatsv1-docs = "pystatsv1.cli:docs_main"
[project.urls]
"Homepage" = "https://github.com/pystatsv1/PyStatsV1"
"Documentation" = "https://pystatsv1.readthedocs.io"
"Source" = "https://github.com/pystatsv1/PyStatsV1"
"Issues" = "https://github.com/pystatsv1/PyStatsV1/issues"
"PyPI" = "https://pypi.org/project/pystatsv1/"
[tool.setuptools]
package-dir = { "" = "src" }
include-package-data = true
[tool.setuptools.packages.find]
where = ["src"]
[tool.setuptools.package-data]
pystatsv1 = [
"docs/pystatsv1.pdf",
]
"pystatsv1.assets" = [
"*.zip",
]