-
Notifications
You must be signed in to change notification settings - Fork 24
/
Copy pathpyproject.toml
35 lines (30 loc) · 885 Bytes
/
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
[tool.poetry]
name = "plotdigitizer"
version = "0.3.1"
description = "Extract raw data from plots images"
authors = ["Dilawar Singh <[email protected]>"]
maintainers = ["Dilawar Singh <[email protected]>"]
readme = "README.md"
repository = "https://github.com/dilawar/PlotDigitizer"
license = "LGPL-3.0-or-later"
[tool.poetry.dependencies]
python = ">=3.9,<=4"
opencv-python = "^4.10"
numpy = "^2.0.0"
matplotlib = "^3.9.1"
typer = "^0.12.3"
typing-extensions = "^4.12.2"
loguru = "^0.7.2"
[tool.poetry.dev-dependencies]
pytest = "^8.2.2"
matplotlib = "^3.9.1"
[tool.poetry.scripts]
plotdigitizer = 'plotdigitizer.plotdigitizer:main'
plotdigitizer-locate = 'plotdigitizer.locate:main'
[tool.poetry.group.dev.dependencies]
mypy = "^1.10"
pylint = "^3.2.5"
ruff = "^0.5.4"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"