-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpyproject.toml
36 lines (30 loc) · 1.14 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
[tool.poetry]
name = "overtrack-cv"
version = "0.1.0"
description = ""
authors = ["Simon Pinfold <[email protected]>"]
[tool.poetry.dependencies]
python = "^3.7.4, <3.9"
tabulate = "^0.8.7"
opencv-python = "^4.0"
tesserocr = [
{ url = "https://github.com/simonflueckiger/tesserocr-windows_build/releases/download/tesserocr-v2.4.0-tesseract-4.0.0/tesserocr-2.4.0-cp36-cp36m-win_amd64.whl", markers = "sys_platform == 'win32' and python_version >= '3.6' and python_version < '3.7'" },
{ url = "https://github.com/simonflueckiger/tesserocr-windows_build/releases/download/tesserocr-v2.4.0-tesseract-4.0.0/tesserocr-2.4.0-cp37-cp37m-win_amd64.whl", markers = "sys_platform == 'win32' and python_version >= '3.7' and python_version < '3.8'" },
{ markers = "sys_platform == 'linux'", version = "^2.4.0" }
]
python-Levenshtein-wheels = "0.13.0"
requests = "^2.25.1"
tflit = "^0.0.16"
tqdm = "^4.57.0"
[tool.poetry.dev-dependencies]
black = "^20.8b1"
isort = "^5.7.0"
matplotlib = "^3.3.4"
[tool.black]
line-length = 115
[tool.isort]
profile = "black"
multi_line_output = 3
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"