-
Notifications
You must be signed in to change notification settings - Fork 2
/
pyproject.toml
68 lines (61 loc) · 1.7 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
[tool.poetry]
name = "dhos-users-api"
version = "0.0.1"
description = "DHOS Users API"
authors = ["Andrew Gill <[email protected]>"]
keywords = ["Users"]
repository = "https://github.com/draysontechnologies/dhos-users-api"
[[tool.poetry.source]]
name = "sensynehealth"
url = "https://pypi.fury.io/sensynehealth/"
[tool.poetry.dependencies]
python = "^3.9"
auth0-api-client = "1.*"
draymed = "2.*"
flask-batteries-included = {version = "3.*", extras = ["apispec", "pgsql"]}
kombu-batteries-included = "1.*"
pycryptodomex = "3.*"
she-logging = "1.*"
[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 = "*"
tox = "*"
types-Flask = "*"
types-mock = "*"
types-PyYAML = "*"
types-requests = "*"
types-waitress = "*"
[tool.mypy]
namespace_packages=true
ignore_missing_imports=false
disallow_untyped_defs=true
[[tool.mypy.overrides]]
module = [
"apispec.*",
"apispec_webframeworks.*",
"connexion",
"dhosredis",
"jose.*",
"sadisplay",
"sqlalchemy.*"
]
ignore_missing_imports = true
[tool.isort]
profile = "black"
known_third_party = ["Cryptodome", "_pytest", "alembic", "apispec", "apispec_webframeworks", "auth0_api_client", "behave", "click", "clients", "connexion", "environs", "faker", "flask", "flask_batteries_included", "helper", "helpers", "jose", "kombu", "kombu_batteries_included", "marshmallow", "mock", "pytest", "pytest_mock", "requests", "sadisplay", "she_logging", "sqlalchemy", "waitress", "yaml"]
[tool.black]
line-length = 88
target-version = ["py39"]