forked from sensynehealth/polaris-observations-api
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
66 lines (60 loc) · 1.72 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
[tool.poetry]
name = "dhos-observations-api"
version = "0.0.1"
description = "Polaris Observations API"
authors = ["Adam Romano <[email protected]>"]
keywords = ["Swagger", "Observations"]
repository = "https://github.com/polaris-foundation/polaris-observations-api"
[tool.poetry.dependencies]
python = "^3.9"
flask-batteries-included = {version="3.*", extras = ["pgsql", "apispec"]}
kombu-batteries-included = "1.*"
she-logging = "1.*"
python-dateutil = "*"
[tool.poetry.dev-dependencies]
bandit = "*"
black = "*"
coloredlogs = "*"
coverage = "*"
isort = "*"
mock = "*"
mypy = "*"
pytest = "*"
pytest-dhos = {version = "*", extras=["fbi"]}
pytest-flask = "*"
pytest-freezegun = "*"
pytest-mock = "*"
requests_mock = "*"
sadisplay = "*"
safety = "*"
sqlalchemy-stubs = "*"
tox = "*"
tox-docker = "*"
types-python-dateutil = "*"
types-mock = "*"
types-PyYAML ="*"
types-waitress = "*"
[tool.mypy]
namespace_packages=true
ignore_missing_imports=true
disallow_untyped_defs=true
[[tool.mypy.overrides]]
module = [
"waitress",
"pytest",
"flask.testing",
"apispec.*",
"connexion",
"apispec_webframeworks.*",
"pytest_mock",
"jose",
"flask",
"sadisplay"
]
ignore_missing_imports = true
[tool.isort]
profile = "black"
known_third_party = ["alembic", "apispec", "apispec_webframeworks", "assertpy", "behave", "click", "clients", "connexion", "dateutil", "environs", "flask", "flask_batteries_included", "helpers", "jose", "kombu", "kombu_batteries_included", "marshmallow", "messaging_steps", "mock", "pytest", "pytest_mock", "reporting", "reportportal_behave", "request_steps", "requests", "sadisplay", "she_logging", "sqlalchemy", "waitress", "yaml"]
[tool.black]
line-length = 88
target-version = ["py39"]