forked from MedVisBonn/eyepy
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
78 lines (72 loc) · 2.27 KB
/
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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
[tool.poetry]
name = "eyepie"
packages = [
{include = "eyepy", from = "src"},
]
version = "0.9.2"
description = "The Python package for working with ophthalmological data."
authors = ["Olivier Morelle <[email protected]>"]
license = "MIT"
readme = "README.md"
repository = "https://github.com/MedVisBonn/eyepy"
keywords = ["ophthalmology", "oct", "visualization", "spectralis"]
classifiers = [
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: Scientific/Engineering :: Image Processing",
"Topic :: Scientific/Engineering :: Medical Science Apps.",
"Topic :: Scientific/Engineering :: Visualization",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.8",
"License :: OSI Approved :: MIT License",
"Intended Audience :: Developers",
"Intended Audience :: Science/Research",
"Intended Audience :: Healthcare Industry",
"Development Status :: 4 - Beta",
"Natural Language :: English",
"Operating System :: OS Independent"
]
[tool.poetry.dependencies]
python = ">=3.8,<3.11"
numpy = ">=1.22.0"
pandas = "^1.5.3"
scikit-image = "0.20.0"
imagecodecs = "^2023.1.23"
matplotlib = "^3.5.1"
nptyping = "^2.3.1"
construct-typing = "^0.5.5"
itk = {version = "^5.3.0", optional = true}
imageio = "^2.25.1"
[tool.poetry.extras]
itk = ["itk"]
[tool.poetry.group.dev.dependencies]
pytest = "^6.2.5"
pytest-cov = "^3.0.0"
yapf = {version = "^0.32.0", allow-prereleases = true}
pre-commit = "^2.16.0"
commitizen = "^2.20.4"
mkdocs = "^1.3.0"
mkdocstrings = { version = "^0.19.0", extras = [ "python" ] }
mkdocs-material = "^9.0.11"
mkdocs-gen-files = "^0.4.0"
mkdocs-literate-nav = "^0.5.0"
mkdocs-section-index = "^0.3.5"
pymdown-extensions = "^9.7"
jupyter = "^1.0.0"
tabulate = "^0.9.0"
pygifsicle = "^1.0.7"
mkdocs-macros-plugin = "^0.7.0"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.semantic_release]
major_on_zero = false
version_variable = ['src/eyepy/__init__.py:__version__']
version_toml = "pyproject.toml:tool.poetry.version"
version_pattern = ["CITATION.cff:v(\\d+\\.\\d+\\.\\d+)"]
upload_to_pypi = true
upload_to_release = true
build_command = "pip install poetry && poetry build"
[tool.pytest.ini_options]
addopts = [
"--import-mode=importlib",
]