forked from sensynehealth/polaris-medications-api
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
65 lines (59 loc) · 1.67 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
[tool.poetry]
name = "dhos-medications-api"
version = "0.0.1"
description = "API application for managing medications in Polaris"
authors = ["Andrew Gill <[email protected]>"]
keywords = ["Medications", "Medicine", "Polaris"]
repository = "https://github.com/polaris-foundation/polaris-medications-api"
[tool.poetry.dependencies]
python = "^3.9"
connexion = {version = "2.*", extras = ["swagger-ui"]}
she-logging = "1.*"
flask-batteries-included = {version = "3.*", extras = ["apispec", "pgsql"]}
importlib_resources = "*"
importlib_metadata = "*"
jsonschema = "3.*"
[tool.poetry.dev-dependencies]
bandit = "*"
black = "*"
coloredlogs = "*"
coverage = "*"
isort = "*"
mock = "*"
mypy = "*"
pytest = "*"
pytest-dhos = {version = "*", extras=["fbi"]}
pytest-flask = "*"
pytest-mock = "*"
requests_mock = "1.8.*"
sadisplay = "*"
safety = "*"
tox = "*"
types-PyYAML = "*"
types-requests = "*"
[tool.mypy]
namespace_packages=true
ignore_missing_imports=false
disallow_untyped_defs=true
[[tool.mypy.overrides]]
module = [
"requests_mock",
"pytest",
"environs",
"jose",
"waitress",
"connexion",
"pytest_mock",
"apispec.*",
"apispec_webframeworks.*",
"sadisplay",
"sqlalchemy.*",
"flask_sqlalchemy"
]
ignore_missing_imports = true
[tool.isort]
profile = "black"
known_third_party = ["alembic", "apispec", "apispec_webframeworks", "behave", "click", "clients", "connexion", "environs", "faker", "flask", "flask_batteries_included", "flask_sqlalchemy", "helpers", "marshmallow", "pytest", "reporting", "reportportal_behave", "requests", "sadisplay", "she_logging", "sqlalchemy", "waitress", "yaml"]
[tool.black]
line-length = 88
target-version = ["py39"]