-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
42 lines (38 loc) · 751 Bytes
/
pyproject.toml
File metadata and controls
42 lines (38 loc) · 751 Bytes
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
[tool.poetry]
name = "flask_api_template"
version = "1.0.0"
description = "Bootstrap template for fast Flask API development"
authors = ["Anh Mai <theanht1k20@gmail.com>"]
license = "MIT"
[tool.poetry.dependencies]
python = "^3.7"
Flask = "^1.1.2"
Flask-Cors = "^3.0.10"
marshmallow = "^3.10.0"
gunicorn = "^20.0.4"
[tool.poetry.dev-dependencies]
coverage = "^5.5"
pytest = "^6.2.2"
pytest-mock = "^3.5.1"
pre-commit = "^2.11.1"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.black]
line-length = 88
target-version = ['py36', 'py37', 'py38']
include = '\.pyi?$'
exclude = '''
/(
\.eggs
| \.git
| \.hg
| \.mypy_cache
| \.tox
| \.venv
| _build
| buck-out
| build
| dist
)/
'''