forked from chandrikadeb7/Face-Mask-Detection
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
72 lines (65 loc) · 1.34 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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
[tool.poetry]
name = "root"
version = "0.0.0"
description=""
authors=["srp-31 <[email protected]>"]
[tool.poetry.dependencies]
python = ">=3.6.1,<4.0"
argparse = "1.1"
imutils = "0.5.3"
keras = "2.3.1"
matplotlib = "3.2.1"
numpy = "1.18.2"
opencv-python = "==4.2.0.*"
pillow = "7.2.0"
scikit-learn = "0.23.1"
scipy = "1.4.1"
tensorflow = ">=1.15.2"
wheel = "^0.36.2"
seldon-core = "^1.5.1"
Flask = "^1.1.2"
gunicorn = "^20.0.4"
dash = "^1.18.1"
dash-renderer = "^1.8.3"
mlrun = "^0.5.4"
python-dotenv = "^0.15.0"
[tool.poetry.dev-dependencies]
black = "^19.10b0" # "*" does not work with black's versioning scheme
bump2version = "*"
coverage = "*"
flake8 = "*"
isort = "*"
pre-commit = "*"
pytest = "*"
pytest-cov = "*"
tox = "*"
Sphinx = "*"
pydocstyle = "*"
sphinx_rtd_theme = "*"
[tool.black]
line-length = "99"
target-version = ['py36', 'py37', 'py38']
skip-string-normalization = true
include = '\.pyi?$'
exclude = '''
(
/(
\.eggs # exclude a few common directories in the
| \.git # root of the project
| \.hg
| \.mypy_cache
| \.tox
| \.venv
| _build
| buck-out
| build
| dist
| docs
)/
| setup.py # also separately exclude a file named foo.py in
# the root of the project
)
'''
[build-system]
requires = ["poetry>=0.12"]
build-backend = "poetry.masonry.api"