-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
86 lines (78 loc) · 2.26 KB
/
pyproject.toml
File metadata and controls
86 lines (78 loc) · 2.26 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
74
75
76
77
78
79
80
81
82
83
84
85
86
# build configuration
[build-system]
requires = ["setuptools"]
build-backend = "setuptools.build_meta"
[project]
name = "pystatpower"
version = "0.0.4"
description = "A Power Analysis Toolkit for Python"
license = { text = "GPL-3.0" }
requires-python = ">=3.10"
authors = [
{ name = "Snoopy1866", email = "pystatpower@gmail.com" }
]
keywords = [
"mathematics",
"statistics",
"power analysis",
"sample size",
"power",
"hypothesis"
]
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: 3.14",
"Topic :: Scientific/Engineering :: Mathematics"
]
dependencies = [
"scipy>=1.7.2,<1.16;python_version=='3.10'",
"scipy>=1.10.1;python_version=='3.11'",
"scipy>=1.11.3;python_version=='3.12'",
"scipy>=1.15.0;python_version=='3.13'",
"scipy>=1.16.1;python_version=='3.14'"
]
readme = { file = "README.md", content-type = "text/markdown" }
[project.urls]
Homepage = "https://github.com/Snoopy1866/pystatpower"
Documentation = "https://github.com/Snoopy1866/pystatpower/blob/main/README.md"
Repository = "https://github.com/Snoopy1866/pystatpower.git"
Issues = "https://github.com/Snoopy1866/pystatpower/issues"
Changelog = "https://github.com/Snoopy1866/pystatpower/blob/main/CHANGELOG.md"
# setuptools configuration
[tool.setuptools.dynamic]
version = { attr = "pystatpower.__version__" }
# pytest configuration
[tool.pytest.ini_options]
minversion = "8.0"
addopts = "-ra -q -l --tb=auto --color=yes"
testpaths = ["tests"]
pythonpath = ["src"]
verbosity_test_cases = 2
verbosity_assertions = 2
# ruff configuration
[tool.ruff]
line-length = 120
[tool.ruff.lint]
select = ["E4", "E7", "E9", "F"]
extend-select = ["I"]
[tool.ruff.lint.isort]
known-local-folder = ["src"]
lines-between-types = 1
[dependency-groups]
dev = [
"pre-commit>=4.3.0",
"pytest>=8.3.5",
"pytest-cov>=7.0.0",
"ruff>=0.9.9"
]
docs = [
"mkdocstrings-python>=2.0.3",
"zensical>=0.0.29"
]