-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpyproject.toml
More file actions
40 lines (38 loc) · 1 KB
/
pyproject.toml
File metadata and controls
40 lines (38 loc) · 1 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
[build-system]
requires = ["setuptools"]
build-backend = "setuptools.build_meta"
[project]
name = "ChartExtractor"
version = "1.0.0a"
dependencies = [
"networkx",
"numpy",
"onnxruntime",
"opencv-python-headless",
"pandas",
"pillow",
"scikit-learn",
"scipy",
]
authors = [
{name = "Ryan Folks", email = "vcz2aj@uvahealth.org"},
{name = "Charbel Marche", email = "qdy4zt@virginia.edu"},
{name = "Hannah Valenty", email = "unc6kr@virginia.edu"},
{name = "Matthew Beck", email = "mtb2tgk@virginia.edu"}
]
maintainers = [
{name = "Ryan Folks", email = "vcz2aj@uvahealth.org"},
{name = "Charbel Marche", email = "qdy4zt@virginia.edu"}
]
description = "A library for digitizing smartphone images of paper surgical records."
readme = "README.md"
license = "GPL-3.0"
license-files = ["LICENSE"]
keywords = ["computer vision"]
classifiers = ["Development Status :: 3 - Alpha"]
[project.optional-dependencies]
dev = [
"ruff"
]
[tool.setuptools.packages.find]
where = ["src"]