-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
92 lines (85 loc) · 1.6 KB
/
pyproject.toml
File metadata and controls
92 lines (85 loc) · 1.6 KB
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
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
[tool.poetry]
name = "sme_financing"
version = "0.1.0"
description = "An SME financing platform solution that would help small and medium entreprises gain access to financial services and manage, track and ensure the effective implementation the financing project."
authors = [
"kakiang <kakiang.hk@gmail.com>"
]
[tool.poetry.dependencies]
python = "^3.7"
Flask = "^1.1.2"
Flask-SQLAlchemy = "^2.4.1"
Flask-Migrate = "^2.5.3"
Flask-Bcrypt = "^0.7.1"
Flask-Script = "^2.0.6"
flask_testing = "^0.8.0"
pyjwt = "^1.7.1"
flask-restx = "^0.2.0"
python-dotenv = "^0.13.0"
pymysql = "^0.9.3"
wheel = "^0.34.2"
firebase-admin = "^4.3.0"
# grpcio = "^1.29.0"
# google-cloud-storage = "^1.28.1"
# setuptools = "^47.1.1"
# gcloud = "^0.18.3"
[tool.poetry.dev-dependencies]
pytest = "^5.2"
flake8 = "^3.7.9"
black = "^19.10b0"
isort = "^4.3.21"
pytest-cov = "^2.8.1"
[tool.black]
line-length = 88
target-version = ['py37']
include = '\.pyi?$'
exclude = '''
/(
\.eggs
| \.git
| \.hg
| \.mypy_cache
| \.tox
| \.venv
| _build
| buck-out
| build
| dist
)/
'''
[tool.flake8]
max-line-length = 88
ignore = ['E501']
max-complexity = 10
exclude = '''
.pytest_cache
.DS_Store
__pycache__
**/**/__pycache__
*.pyc
.git
setup.py
build
dist
releases
.venv
.tox
.vscode
.github
tests/fixtures/
tests/utils/fixtures/
migrations
.env
venv
'''
[tool.isort]
line_length=88
multi_line_output = 3
include_trailing_comma = true
include_trailing_space = true
indent = ' '
[tool.poetry.scripts]
startapp = "manage:run"
[build-system]
requires = ["poetry>=0.12"]
build-backend = "poetry.masonry.api"