Skip to content

Commit

Permalink
chore: update authors and maintainers in pyproject.toml, and add __ve…
Browse files Browse the repository at this point in the history
…rsion__ in __init__.py
  • Loading branch information
jjjermiah committed Nov 15, 2024
1 parent e92e943 commit 1bb5303
Show file tree
Hide file tree
Showing 3 changed files with 27 additions and 28 deletions.
28 changes: 2 additions & 26 deletions pixi.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

25 changes: 23 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand All @@ -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"]
Expand All @@ -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
Expand Down
2 changes: 2 additions & 0 deletions src/imgtools/__init__.py
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"

0 comments on commit 1bb5303

Please sign in to comment.