-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpyproject.toml
66 lines (59 loc) · 1.53 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-rules-api"
version = "0.0.1"
description = "DHOS Rules API"
authors = ["Jon Daly <[email protected]>"]
keywords = ["Swagger", "Rules"]
repository = "https://github.com/draysontechnologies/dhos-rules-api"
[[tool.poetry.source]]
name = "sensynehealth"
url = "https://pypi.fury.io/sensynehealth/"
[tool.poetry.dependencies]
python = "^3.9"
cachetools = "5.*"
flask-batteries-included = {version="3.*", extras = ["apispec"]}
she-logging = "1.*"
[tool.poetry.dev-dependencies]
bandit = "*"
black = "*"
coloredlogs = "*"
coverage = "*"
isort = "*"
mock = "*"
mypy = "*"
pytest = "*"
pytest-dhos = "*"
pytest-flask = "*"
pytest-mock = "*"
requests_mock = "*"
safety = "*"
tox = "*"
types-cachetools = "*"
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 = [
"waitress",
"pytest",
"flask.testing",
"apispec.*",
"connexion",
"apispec_webframeworks.*",
"pytest_mock",
"jose",
"flask",
"sadisplay"
]
ignore_missing_imports = true
[tool.isort]
profile = "black"
known_third_party = ["apispec", "apispec_webframeworks", "behave", "cachetools", "click", "clients", "connexion", "dateutil", "environs", "flask", "flask_batteries_included", "helpers", "jose", "marshmallow", "pytest", "reporting", "reportportal_behave", "requests", "requests_mock", "she_logging", "waitress", "yaml"]
[tool.black]
line-length = 88
target-version = ["py39"]