Skip to content

Commit

Permalink
Add a basic pyproject.toml file
Browse files Browse the repository at this point in the history
Generated by `poetry init`
  • Loading branch information
jond01 committed Feb 3, 2022
1 parent ceb1b3c commit e868688
Showing 1 changed file with 46 additions and 0 deletions.
46 changes: 46 additions & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,46 @@
[tool.poetry]
name = "medio"
version = "0.4.1"
description = "Medical images I/O Python package"
authors = [
"RSIP Vision <[email protected]>",
"Jonathan Daniel <[email protected]>",
]
license = "Apache-2.0"
readme = "README.md"
repository = "https://github.com/RSIP-Vision/medio"
keywords = ["medical-images", "IO", "itk", "nibabel", "pydicom"]
classifiers = [
"Development Status :: 4 - Beta",
"License :: OSI Approved :: Apache Software License",
"Intended Audience :: Developers",
"Intended Audience :: Education",
"Intended Audience :: Healthcare Industry",
"Intended Audience :: Science/Research",
"Topic :: Scientific/Engineering :: Bio-Informatics",
"Topic :: Scientific/Engineering :: Medical Science Apps.",
"Topic :: Software Development :: Libraries :: Python Modules",
"Programming Language :: Python",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Operating System :: OS Independent",
]

[tool.poetry.dependencies]
python = "^3.7"
itk = "^5.1.2"
nibabel = "^3.2.1"
pydicom = "^2.1.2"
dicom-numpy = "^0.5.0"
numpy = "^1.18.1"

[tool.poetry.dev-dependencies]

[tool.poetry.urls]
"Bug Tracker" = "https://github.com/RSIP-Vision/medio/issues"

[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"

0 comments on commit e868688

Please sign in to comment.