-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
45 lines (39 loc) · 939 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
36
37
38
39
40
41
42
43
44
45
[tool.poetry]
name = "bra-database"
version = "0.0.1"
description = "Parsing French avalanche risk news and upload information to a structured DB"
authors = ["Emeric <[email protected]>"]
license = "GPL-3"
packages = [
{ include = "bra_database" }
]
[tool.poetry.scripts]
fmt = "cicd:fmt"
flake = "cicd:flake"
lint = "cicd:lint"
coverage = "cicd:coverage"
bandit = "cicd:bandit"
unit_tests = "cicd:unit_tests"
[tool.poetry.dependencies]
python = "^3.9"
requests = "^2.27.1"
pdfplumber = "^0.6.0"
pytesseract = "^0.3.9"
Pillow = "^9.0.1"
PyMySQL = "^1.0.2"
python-dotenv = "^0.19.2"
retry = "^0.9.2"
cryptography = "^36.0.2"
opencv-python = "^4.5.5"
[tool.poetry.dev-dependencies]
halo = "^0.0.31"
pytest = "^7.0.1"
pylint = "^2.12.2"
mypy = "^0.931"
yapf = "^0.32.0"
flake8 = "^4.0.1"
flake8-bandit = "^2.1.2"
coverage = "^6.3.2"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"