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

[project]
name = "reference_model"
version = "0.6.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"