-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
102 lines (88 loc) · 2.04 KB
/
pyproject.toml
File metadata and controls
102 lines (88 loc) · 2.04 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
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "scikit-statistics"
version = "0.1.0"
description = "Community driven collection of statistical distributions for SciPy"
readme = "README.md"
requires-python = ">=3.11"
license = "BSD-3-Clause"
authors = [
{ name = "Pamphile Roy" },
{ name = "Matt Haberland" },
]
maintainers = [
{ name = "Scikit-Stats maintainers" },
]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"License :: OSI Approved :: BSD License",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
]
keywords = [
"scipy",
"statistics",
"distributions",
"random numbers",
"QMC",
]
dependencies = [
"scipy",
"numpy",
]
[project.optional-dependencies]
doc = [
"sphinx",
"pydata-sphinx-theme",
"accessible-pygments",
"numpydoc",
"myst-nb",
]
[tool.uv]
dev-dependencies = [
"pytest",
"pytest-cov",
"hypothesis",
"mpmath",
"sphinx",
"pydata-sphinx-theme",
"accessible-pygments",
"numpydoc",
"myst-nb",
"pre-commit",
"ruff",
]
[tool.uv.sources]
scipy = { index = "scientific_python_nightly_wheels" }
[[tool.uv.index]]
name = "scientific_python_nightly_wheels"
url = "https://pypi.anaconda.org/scientific-python-nightly-wheels/simple"
[project.urls]
homepage = "https://github.com/scikit-stats/scikit-stats"
documentation = "https://github.com/scikit-stats/scikit-stats"
source = "https://github.com/scikit-stats/scikit-stats"
[tool.hatch]
build.targets.wheel.packages = ["src/skstats"]
build.targets.sdist.exclude = [
".github",
"docs",
"tests",
"*.rst",
"*.yml",
".*",
]
[tool.pytest.ini_options]
addopts = "--durations 10"
testpaths = [
"tests",
]
[tool.ruff.lint.per-file-ignores]
"**/__init__.py" = ["F403", "F405"]
"**/normal.py" = ["F821"]