Initialize poetry and add dependencies

This commit is contained in:
Matthias Bisping 2023-01-02 15:20:49 +01:00
parent 506ed789f7
commit d52b2bfe22
2 changed files with 3714 additions and 0 deletions

3674
poetry.lock generated Normal file

File diff suppressed because it is too large Load Diff

40
pyproject.toml Normal file
View File

@ -0,0 +1,40 @@
[tool.poetry]
name = "cv-analysis"
version = "0.1.0"
description = ""
authors = []
readme = "README.md"
packages = [{include = "cv_analysis"}]
[tool.poetry.dependencies]
python = "~3.8"
envyaml = "^1.10.211231"
Flask = "^2.1.1"
waitress = "^2.0.0"
funcy = "^1.17"
numpy = "^1.22.3"
opencv-python-headless = "^4.5.5.62"
pdf2image = "^1.16.0"
matplotlib = "^3.5.1"
imutils = "^0.5.4"
iteration-utilities = "^0.11.0"
dvc = "^2.34.0"
dvc-ssh = "^2.20.0"
scipy = "^1.8.0"
coverage = "^5.5"
dependency-check = "^0.6.0"
prometheus-client = "^0.13.1"
prometheus_flask_exporter = "^0.19.0"
lorem-text = "^2.1"
PyMuPDF = "^1.19.6"
pdf2img = {git = "ssh://git@git.iqser.com:2222/rr/pdf2image.git", branch = "python_version_compatibility"}
pyinfra = {git = "ssh://git@git.iqser.com:2222/rr/pyinfra.git", branch = "master"}
[tool.poetry.group.build.dependencies]
pytest = "^7.0.1"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"