Skip to content
Snippets Groups Projects
pyproject.toml 1010 B
[build-system]
requires = ["setuptools>=61.0", "wheel"]
build-backend = "setuptools.build_meta"

[project]
name = "reference_model"
version = "0.1.1"
description = "Example VIPS model, showcasing functionality"
readme = "README.md"
authors = [{ name="Tor-Einar Skog", email="tor-einar.skog@nibio.no" }]
license = { file = "LICENSE"}
classifiers = [
    "Programming Language :: Python :: 3",
    "License :: NIBIO Open Source License",
    "Operating System :: OS Independent",
]
dependencies = [
    "shapely",
    "pydantic",
    "pytz",
    "pandas",
    "vipscore_common @ git+https://gitlab.nibio.no/VIPS/vipscore-python-common.git@v0.6.3"
]

requires-python = ">=3.9"


[tool.bumpver]
current_version = "0.1.1"
version_pattern = "MAJOR.MINOR.PATCH"
commit_message = "bump version {old_version} -> {new_version}"
commit = true
tag = true
push = true

[tool.bumpver.file_patterns]
"pyproject.toml" = [
    'current_version = "{version}"',
    'version = "{version}"',
]
"README.md" = [
    "{version}",
]