Skip to content

Commit

Permalink
auto-version
Browse files Browse the repository at this point in the history
  • Loading branch information
casperdcl committed Oct 30, 2024
1 parent 417ee0f commit 31cab96
Showing 1 changed file with 29 additions and 6 deletions.
35 changes: 29 additions & 6 deletions python/pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,20 +1,43 @@
[build-system]
requires = ["setuptools>=42", "wheel"]
requires = ["setuptools>=42", "setuptools_scm[toml]>=3.4"]
build-backend = "setuptools.build_meta"

[project]
name = "petsird"
version = "0.0.1" # Update as needed
dynamic = ["version"]
description = "Library and tools for working with PET Emission Tomography Standardization Initiative Raw Data (PETSIRD) data"
readme = "README.md"
authors = [{ name = "Kris Thielemans", email = "[email protected]" }]
license = { text = "Apache-2.0" }
authors = [
# TODO
{name = "Kris Thielemans", email = "[email protected]"},
]
maintainers = [
{name = "Casper da Costa-Luis", email = "[email protected]"},
{name = "Kris Thielemans", email = "[email protected]"}]
license = {text = "Apache-2.0"}
requires-python = ">=3.9"
dependencies = [
"numpy>=1.22",
]
classifiers = [
"Development Status :: 3 - Alpha",
"License :: OSI Approved :: Apache Software License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3 :: Only"]

[tool.setuptools.packages.find]
include = ["petsird", "petsird.*"]

[tool.setuptools_scm]
version_file = "petsird/version.py"
root = ".."

[project.urls]
Homepage = "https://etsinitiative.org/"
Repository = "https://github.com/ETSInitiative/PETSIRD.git"
Homepage = "https://etsinitiative.org"
Repository = "https://github.com/ETSInitiative/PETSIRD"
Issues = "https://github.com/ETSInitiative/PETSIRD/issues"

0 comments on commit 31cab96

Please sign in to comment.