-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
49 lines (44 loc) · 1.29 KB
/
pyproject.toml
File metadata and controls
49 lines (44 loc) · 1.29 KB
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
[build-system]
requires = ["setuptools>=64", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "openglottal"
version = "0.2.2"
description = "Automated glottal area segmentation from high-speed videoendoscopy"
readme = "README.md"
license = { file = "LICENSE" }
requires-python = ">=3.9"
keywords = ["glottis", "segmentation", "vocal-folds", "laryngoscopy", "medical-imaging"]
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Topic :: Scientific/Engineering :: Medical Science Apps.",
"Topic :: Scientific/Engineering :: Image Processing",
]
dependencies = [
"h5py>=3.8",
"torch>=2.0",
"torchvision>=0.15",
"ultralytics>=8.0",
"opencv-python>=4.8",
"numpy>=1.24",
"scipy>=1.10",
"matplotlib>=3.7",
"tqdm>=4.65",
"tensorboard>=2.14",
]
[project.optional-dependencies]
dev = ["pytest", "pytest-cov", "ruff", "mypy"]
docs = ["mkdocs", "mkdocs-material"]
gui = ["PyQt5>=5.15"]
[project.scripts]
openglottal = "openglottal.cli:main"
openglottal-gui = "openglottal.qt_app.main:run_gui"
[tool.setuptools.packages.find]
where = ["."]
include = ["openglottal*"]
[tool.ruff]
line-length = 100
target-version = "py39"