-
Notifications
You must be signed in to change notification settings - Fork 44
/
Copy pathpyproject.toml
70 lines (67 loc) · 1.85 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
[tool.poetry]
name = "MS-Scaffold"
version = "2.3.0"
description = "Python Miscroservice barebone"
readme = "README.md"
homepage = "https://python-microservices.github.io/"
documentation = "https://python-microservices.github.io/"
repository = "https://github.com/python-microservices/microservices-scaffold"
license = "GPL-3.0-only"
authors = ["avara1986 <[email protected]>"]
classifiers = [
"Development Status :: 6 - Mature",
"Framework :: Flask",
"Intended Audience :: Developers",
"Intended Audience :: System Administrators",
"Natural Language :: English",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Topic :: Internet :: WWW/HTTP",
"Topic :: Software Development :: Libraries :: Application Frameworks",
"Topic :: Software Development :: Libraries :: Python Modules",
]
[tool.poetry.dependencies]
python = ">=3.6.2,<4.0"
Flask-SQLAlchemy = "==2.5.1"
SQLAlchemy = "==1.4.23"
py-ms = {extras = ["all"], version = "==2.8.0"}
marshmallow = "==3.13.0"
marshmallow-sqlalchemy = ">=0.26.1"
importlib-metadata = "==2.1.1"
cryptography = "<3.4.8"
[tool.poetry.dev-dependencies]
requests-mock = "^1.9.3"
coverage = ">=5.5"
pytest = ">=5.4.3"
pytest-cov = ">=2.12.1"
pylint = ">=2.10.2"
flake8 = "*"
tox = ">=3.24.3"
bandit = "*"
safety = "*"
pre-commit = ">=2.15.0"
black = ">=21.8b0"
mypy = ">=0.790"
[tool.black]
line-length = 120
include = '\.pyi?$'
exclude = '''
/(
\.git
| \.hg
| \.mypy_cache
| \.tox
| \.venv
| _build
| buck-out
| build
| dist
)/
'''