chore: small changes to configuration

This commit is contained in:
Alexander Engelsberger 2023-06-20 18:49:26 +02:00
parent 2a665e220f
commit 497da90f9c
No known key found for this signature in database
2 changed files with 23 additions and 15 deletions

View File

@ -6,7 +6,7 @@ parse = (?P<major>\d+)\.(?P<minor>\d+)\.(?P<patch>\d+)
serialize = {major}.{minor}.{patch}
message = build: bump version {current_version} → {new_version}
[bumpversion:file:setup.py]
[bumpversion:file:pyproject.toml]
[bumpversion:file:./prototorch/models/__init__.py]

View File

@ -4,9 +4,10 @@ name = "prototorch-models"
version = "0.5.4"
description = "Pre-packaged prototype-based machine learning models using ProtoTorch and PyTorch-Lightning."
authors = [
{ name = "Jensun Ravichandran", email = "jjensun@gmail.com" },
{ name = "Alexander Engelsberger", email = "engelsbe@hs-mittweida.de" },
]
dependencies = ["lightning>=2.0.0", "prototorch>=0.7.5", "torchmetrics"]
dependencies = ["lightning>=2.0.0", "prototorch>=0.7.5"]
requires-python = ">=3.8"
readme = "README.md"
license = { text = "MIT" }
@ -36,24 +37,31 @@ Downloads = "https://github.com/si-cim/prototorch_models.git"
[project.optional-dependencies]
dev = ["bumpversion", "pre-commit", "yapf", "toml"]
examples = ["matplotlib", "scikit-learn"]
tests = ["codecov", "pytest"]
all = [
"bumpversion",
"codecov",
"ipykernel",
"jsonargparse",
"matplotlib",
"nbsphinx",
"pre-commit",
"yapf",
"toml",
"pytest",
ci = ["pytest", "pre-commit"]
docs = [
"recommonmark",
"scikit-learn",
"nbsphinx",
"sphinx",
"sphinx_rtd_theme",
"sphinxcontrib-bibtex",
"sphinxcontrib-katex",
"ipykernel",
]
all = [
"bumpversion",
"pre-commit",
"yapf",
"toml",
"pytest",
"matplotlib",
"scikit-learn",
"recommonmark",
"nbsphinx",
"sphinx",
"sphinx_rtd_theme",
"sphinxcontrib-bibtex",
"sphinxcontrib-katex",
"ipykernel",
]
[project.entry-points."prototorch.plugins"]