-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
53 lines (48 loc) · 1.73 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
[tool.poetry]
name = "modelsight"
version = "0.4.0"
description = "Better insights into Machine Learning models performance"
authors = ["Francesco Pisu"]
license = "GNU General Public License v3.0"
readme = "README.md"
classifiers = [
"Topic :: Software Development :: Build Tools",
"Topic :: Software Development :: Libraries :: Python Modules"
]
[tool.poetry.dependencies]
python = "~3.10"
interpret = "^0.4.2"
scikit-learn = "^1.2.2"
matplotlib = "^3.7.1"
pandas = "^2.0.2"
mlxtend = "^0.2.2"
dynaconf = "^3.1.11"
"scikits.bootstrap" = "^1.1.0"
conda-lock = "^2.1.0"
python-semantic-release = "^8.1.1"
[tool.poetry.group.test.dependencies]
pytest = "^7.3.2"
pytest-cov = "4.1.0"
[tool.poetry.group.dev.dependencies]
jupyterlab = "^4.0.2"
typing-extensions = "^4.6.3"
python-semantic-release = "^8.1.1"
myst-nb = {version = "^0.17.2", python = "~3.10"}
sphinx-autoapi = "^2.1.1"
sphinx-rtd-theme = "^1.2.2"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.semantic_release]
version_toml = ["pyproject.toml:tool.poetry.version"] # version location
version_source = "tag"
commit_version_numer = true
commit_message = "chore(release): v{version} [skip ci]"
branch = "main" # branch to make releases of
changelog_file = "CHANGELOG.md" # changelog file
build_command = "pip install poetry && poetry build" # build dists
dist_path = "dist/" # where to put dists
upload_to_vcs_release = true # auto-create GitHub release
upload_to_pypi = false # don't auto-upload to PyPI
remove_dist = false # don't remove dists
patch_without_tag = true # patch release by default