-
Notifications
You must be signed in to change notification settings - Fork 2
/
pyproject.toml
40 lines (34 loc) · 952 Bytes
/
pyproject.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
[tool.poetry]
name = "nekton"
version = "0.2.6"
description = "A python package for DICOM to NifTi and NifTi to DICOM-SEG and GSPS conversion"
authors = ["a-parida12 <abhijeet@deepc.ai>"]
license = "MIT"
repository = 'https://github.com/deepc-health/nekton'
readme = 'README.md'
keywords = ["dicom", "medical-imaging", "nifti", "dicom-seg", "gsps"]
[tool.poetry.dependencies]
python = "^3.6.9"
nibabel = "^3.2.2"
pydicom = "^2.3.0"
numpy = "^1.19.5"
pydicom-seg = "0.3.0"
SimpleITK = "^2.1.1"
[tool.poetry.dev-dependencies]
pytest = "^6.2.5"
flake8 = "^4.0.1"
pytest-cov = "^3.0.0"
commitizen = "^2.20.3"
bandit = "^1.7.1"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.semantic_release]
version_variable = [
"nekton/__init__.py:__version__",
"pyproject.toml:version"
]
branch = "master"
upload_to_pypi = true
upload_to_release = true
build_command = "pip install poetry && poetry build"