-
Notifications
You must be signed in to change notification settings - Fork 11
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
29 additions
and
6 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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" |