-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpyproject.toml
44 lines (38 loc) · 1.59 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
[build-system]
requires = [ "poetry>=0.12",]
build-backend = "poetry.masonry.api"
[tool.autopep8]
in-place = true
aggressive = true
experimental = true
max-line-length = 120
remove-all-unused-imports = true
ignore-init-module-imports = true
remove-unused-variable = true
ignore = [ "E231",]
[tool.black]
line-length = 120
include = "\\.pyi?$"
exclude = "(\n /(\n \\.eggs # exclude a few common directories in the\n | \\.git # root of the project\n | \\.hg\n | \\.mypy_cache\n | \\.tox\n | \\.venv\n | _build\n | buck-out\n | build\n | dist\n )/\n | foo.py # also separately exclude a file named foo.py in\n # the root of the project\n)\n"
[tool.check-manifest]
ignore = [ "PKG-INFO", "*.egg-info", "*.egg-info/*", "setup.cfg", ".hgtags", ".hgsigs", ".hgignore", ".gitignore", ".bzrignore", ".gitattributes", ".github/*", ".travis.yml", "Jenkinsfile", "*.mo",]
[tool.poetry]
name = "eva4-p2"
version = "0.1.0"
description = "All the course work part of EVA4 Phase 2 for the RS Group."
authors = [ "Ramjee Ganti <[email protected]>", "Roshan P <[email protected]>", "Sujit Ojha <[email protected]>", "Srinivasan G <[email protected]>", "Dr P V Rajesh Kumar <[email protected]>",]
license = "Apache-2.0"
[tool.poetry.dependencies]
python = "^3.8"
python-decouple = "^3.3"
requests_toolbelt = "^0.9.1"
dlib = "^19.21.0"
opencv-python = "^4.4.0"
numpy = "^1.19.1"
requests = "^2.24.0"
[tool.poetry.dev-dependencies]
pelican = "^4.2.0"
rstcheck = "^3.3.1"
markdown = "^3.2.2"
pre-commit = "^2.6.0"
boto3 = "^1.14.42"