-
Notifications
You must be signed in to change notification settings - Fork 9
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore: update authors and maintainers in pyproject.toml, and add __ve…
…rsion__ in __init__.py
- Loading branch information
Showing
3 changed files
with
27 additions
and
28 deletions.
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
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 |
---|---|---|
|
@@ -2,7 +2,17 @@ | |
name = "med-imagetools" | ||
version = "1.6.0-rc.2" | ||
description = "Med-Imagetools: Transparent and Reproducible Medical Image Processing Pipelines in Python" | ||
authors = [{ name = "Sejin Kim" }, { name = "Benjamin Haibe-Kains" }] | ||
authors = [ | ||
{ name = "Sejin Kim" }, | ||
{ name = "Michal Kazmierski" }, | ||
{ name = "Kevin Qu" }, | ||
{ name = "Vishwesh Ramanathan" }, | ||
{ name = "Jermiah Joseph" }, | ||
{ name = "Benjamin Haibe-Kains", email = "[email protected]" }, | ||
] | ||
maintainers = [ | ||
{ name = "Benjamin Haibe-Kains", email = "[email protected]" }, | ||
] | ||
license = "MIT" | ||
readme = "README.md" | ||
requires-python = ">=3.10,<4" | ||
|
@@ -25,6 +35,17 @@ dependencies = [ | |
"attrs>=23.2.0", | ||
] | ||
|
||
classifiers = [ | ||
"License :: OSI Approved :: MIT License", | ||
"Natural Language :: English", | ||
"Operating System :: OS Independent", | ||
"Programming Language :: Python :: 3.10", | ||
"Programming Language :: Python :: 3.11", | ||
"Programming Language :: Python :: 3.12", | ||
"Programming Language :: Python :: 3.13", | ||
] | ||
|
||
|
||
# Optional dependencies (extras) | ||
[project.optional-dependencies] | ||
torch = ["torch", "torchio"] | ||
|
@@ -48,7 +69,7 @@ include = ["pyproject.toml", "README.md", "src/**"] | |
|
||
|
||
[tool.semantic_release] | ||
version_variables = ["setup.py:__version__"] | ||
version_variables = ["src/imgtools/__init__.py:__version__"] | ||
version_toml = ["pyproject.toml:project.version"] | ||
upload_to_release = true | ||
remove_dist = false | ||
|
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,3 +1,5 @@ | ||
from . import io, ops, utils, pipeline | ||
|
||
__all__ = ["io", "ops", "utils", "pipeline"] | ||
|
||
__version__ = "1.6.0-rc.2" |