-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
52 lines (46 loc) · 1.44 KB
/
Copy pathpyproject.toml
File metadata and controls
52 lines (46 loc) · 1.44 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
50
51
52
[build-system]
requires = ["setuptools>=68"]
build-backend = "setuptools.build_meta"
[project]
name = "digitize"
version = "0.1.0"
description = "LLM-operated precision digitizer for biomedical graphs"
readme = "README.md"
license = { text = "MIT" }
requires-python = ">=3.10"
authors = [{ name = "Samuel Paik-Heintz" }]
keywords = [
"plot-digitizer", "figure-digitization", "data-extraction",
"biomedical", "pk-pd", "dose-response", "kaplan-meier", "llm", "claude-code",
]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
"Topic :: Scientific/Engineering :: Image Recognition",
"Topic :: Scientific/Engineering :: Bio-Informatics",
"Topic :: Scientific/Engineering :: Visualization",
]
dependencies = [
"numpy>=1.26",
"scipy>=1.11",
"opencv-python-headless>=4.8",
"scikit-image>=0.22",
"matplotlib>=3.8",
"pillow>=10",
"click>=8.1",
]
[project.optional-dependencies]
dev = ["pytest>=8"]
[project.urls]
Homepage = "https://github.com/paiksca/digitize"
Repository = "https://github.com/paiksca/digitize"
"Agent guide" = "https://github.com/paiksca/digitize/blob/main/AGENT_GUIDE.md"
[project.scripts]
digitize = "digitize.cli:main"
[tool.setuptools.packages.find]
where = ["src"]
[tool.setuptools.package-data]
digitize = ["py.typed"]