generated from elphick/elphick-template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
42 lines (36 loc) · 977 Bytes
/
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
[tool.poetry]
name = "sklearn-viz"
version = "0.6.7"
description = ""
authors = ["Greg <11791585+elphick@users.noreply.github.com>"]
readme = "README.md"
packages = [{ include = "elphick/sklearn_viz" }]
[[tool.poetry.source]]
name = "PyPI"
priority = "primary"
[tool.poetry.scripts]
bump-version = "scripts.bump_version:main"
[tool.towncrier]
package = "elphick.sklearn_viz"
package_dir = "elphick/sklearn_viz"
filename = "HISTORY.rst"
directory = "towncrier/newsfragments"
[tool.poetry.dependencies]
python = ">=3.9,<3.12"
scikit-learn = ">=1.2.0"
pandas = ">=1.3.0"
matplotlib = ">=3.3"
plotly = "^5.15.0"
statsmodels = "^0.14.0"
[tool.poetry.group.dev.dependencies]
pytest = "^7.1.3"
sphinx = "^5.0.2"
sphinx-rtd-theme = "^1.0.0"
sphinx-gallery = "^0.11.1"
sphinx-autodoc-typehints = "^1.18.3"
myst-parser = "^0.18.0"
kaleido = "0.2.1" # For plotly thumbnails
towncrier = "^23.11.0"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"