forked from sktime/skpro
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
127 lines (116 loc) · 2.91 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
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
[project]
name = "skpro"
version = "2.6.0"
description = "A unified framework for probability distributions and probabilistic supervised regression"
authors = [
{name = "skpro developers", email = "[email protected]"},
{name = "Franz Király"},
{name = "Frithjof Gressmann"},
{name = "Vitaly Davydov"},
]
maintainers = [
{name = "skpro developers", email = "[email protected]"},
]
readme = "README.md"
keywords = [
"data-science",
"machine-learning",
"data-mining",
"time-series",
"scikit-learn",
"regression",
]
classifiers = [
"Intended Audience :: Science/Research",
"Intended Audience :: Developers",
"License :: OSI Approved :: BSD License",
"Programming Language :: Python",
"Topic :: Software Development",
"Topic :: Scientific/Engineering",
"Operating System :: Microsoft :: Windows",
"Operating System :: POSIX",
"Operating System :: Unix",
"Operating System :: MacOS",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
]
requires-python = ">=3.9,<3.13"
dependencies = [
"numpy>=1.21.0,<2.2",
"pandas>=1.1.0,<2.3.0",
"packaging",
"scikit-base>=0.6.1,<0.10.0",
"scikit-learn>=0.24.0,<1.6.0",
"scipy<2.0.0,>=1.2.0",
]
[project.optional-dependencies]
all_extras = [
"attrs",
"cyclic-boosting>=1.4.0; python_version < '3.12'",
"distfit",
"lifelines<0.30.0",
"mapie",
"matplotlib>=3.3.2",
"ngboost<0.6.0",
"polars<1.7.0",
"pyarrow<14.0.0; python_version < '3.12'",
"scikit-survival<0.24.0",
"statsmodels>=0.12.1",
"tabulate",
"uncertainties",
]
dev = [
"backoff",
"httpx",
"pre-commit",
"pytest",
"pytest-cov",
"pytest-randomly",
"pytest-timeout",
"pytest-xdist",
"wheel",
]
binder = [
"jupyter",
]
docs = [
"jupyter",
"myst-parser",
"nbsphinx>=0.8.6",
"numpydoc",
"pydata-sphinx-theme",
"sphinx!=7.2.0,<9.0.0",
"sphinx-design<0.7.0",
"sphinx-issues<5.0.0",
"sphinx-gallery<0.18.0",
"sphinx-panels",
"tabulate",
]
[project.urls]
Homepage = "https://github.com/sktime/skpro"
Repository = "https://github.com/sktime/skpro"
Documentation = "https://github.com/sktime/skpro"
Download = "https://pypi.org/project/skpro/#files"
"API Reference" = "https://github.com/sktime/skpro"
"Release Notes" = "https://github.com/sktime/skpro"
[project.license]
file = "LICENSE"
[build-system]
requires = ["setuptools>61", "wheel", "toml", "build"]
build-backend = "setuptools.build_meta"
[tool.nbqa.exclude]
black = "^docs/source/examples/"
flake8 = "^docs/source/examples/"
isort = "^docs/source/examples/"
[tool.setuptools]
zip-safe = true
[tool.setuptools.package-data]
sktime = [
"*.csv",
"*.csv.gz",
"*.txt",
]
[tool.setuptools.packages.find]
exclude = ["tests", "tests.*"]