-
Notifications
You must be signed in to change notification settings - Fork 8
/
pyproject.toml
83 lines (75 loc) · 2.39 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
79
80
81
82
83
[tool.poetry]
name = "eyepy"
packages = [{ include = "eyepy", from = "src" }]
version = "0.12.2"
description = "A python package to read, analyse and visualize OCT and fundus data form various sources."
authors = ["Olivier Morelle <oli4morelle@gmail.com>"]
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.9",
"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.9,<3.12"
numpy = ">=1.22.0"
pandas = "^1.5.3"
scikit-image = ">=0.22.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"
oct-converter = "^0.6.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"
mkdocs-material = "9.4"
mkdocstrings = {version = "^0.24.0", extras = ["python"]}
mkdocs-gen-files = "^0.4.0"
mkdocs-literate-nav = "^0.5.0"
mkdocs-section-index = "^0.3.5"
pymdown-extensions = ">=10.2,<11.0"
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_variables = ["src/eyepy/__init__.py:__version__"]
version_toml = ["pyproject.toml:tool.poetry.version"]
upload_to_pypi = true
upload_to_vsc_release = true
build_command = "pip install poetry && poetry build"
[tool.docformatter]
check = false
recursive = true
in-place = true
syntax = "google"
wrap-summaries = 82
blank = false
[tool.pytest.ini_options]
addopts = ["--import-mode=importlib"]