-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpyproject.toml
130 lines (118 loc) · 3.09 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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
[tool.poetry]
name = "servox"
version = "0.11.0"
description = "Opsani Servo: The Next Generation"
homepage = "https://opsani.com/"
repository = "https://github.com/opsani/servox"
authors = ["Blake Watters <blake@opsani.com>"]
readme = "README.md"
license = "Apache-2.0"
packages = [
{ include = "servo" },
]
include = ["README.md", "CHANGELOG.md"]
[tool.poetry.dependencies]
python = "^3.8"
pydantic = "^1.8.1"
loguru = "^0.5.1"
httpx = "^0.17.0"
python-dotenv = ">=0.15,<0.20"
semver = "^2.10.1"
pyaml = "^20.4.0"
tabulate = "^0.8.7"
pygments = "^2.6.1"
devtools = "^0.6.0"
backoff = "^1.10.0"
typer = "^0.3.0"
bullet = "^2.1.0"
jsonschema = "^3.2.0"
timeago = "^1.0.14"
orjson = "^3.5.0"
uvloop = "^0.16.0"
statesman = "^1.0.0"
pytz = "^2021.1"
toml = "^0.10.2"
colorama = "^0.4.4"
pyfiglet = "^0.8.post1"
curlify2 = "^1.0.0"
kubernetes-asyncio-cr-patch = "^12.1.2"
[tool.poetry.dev-dependencies]
pytest = "^6.2.4"
pytest-asyncio = "^0.15.1"
pytest-cov = "^2.10.0"
pytest-mock = "^3.5.1"
freezegun = "^1.1.0"
respx = "^0.16.3"
kubetest = {git = "https://github.com/opsani/kubetest.git", rev = "feature/template-manifests"}
pytest-freezegun = "^0.4.2"
yamlpath = "^3.2.0"
isort = "^5.7.0"
autoflake = "^1.4"
flake8-fixme = "^1.1.1"
flake8-isort = "^4.0.0"
pre-commit = "^2.12.1"
pytest-randomly = "^3.7.0"
flake8-pytest-style = "^1.3.0"
mypy = "^0.812"
nitpick = "^0.27.0"
flakehell = "^0.9.0"
flake8-docstrings = "^1.5.0"
flake8-quotes = "^3.3.0"
flake8-bugbear = "^21.3.2"
flake8-builtins = "^1.5.3"
flake8-eradicate = "^1.0.0"
flake8-use-fstring = "^1.1"
flake8-annotations-coverage = "^0.0.5"
flake8-annotations-complexity = "^0.0.5"
flake8-annotations = "^2.6.0"
flake8-markdown = "^0.2.0"
flake8-bandit = "^2.1.2"
fastapi = "^0.68.0"
uvicorn = "^0.15.0"
pytest-profiling = "^1.7.0"
pytest-sugar = "^0.9.4"
pytest-clarity = "^1.0.1"
pytest-picked = "^0.4.6"
chevron = "^0.14.0"
pytest-xdist = "^2.3.0"
pytest-vscodedebug = "^0.1.0"
pytest-html = "^3.1.1"
bandit = "^1.7.0"
watchgod = "^0.7"
filelock = "^3.0.12"
[tool.poetry.scripts]
servo = "servo.entry_points:run_cli"
[tool.poetry.plugins."servo.connectors"]
vegeta = "servo.connectors.vegeta:VegetaConnector"
kubernetes = "servo.connectors.kubernetes:KubernetesConnector"
prometheus = "servo.connectors.prometheus:PrometheusConnector"
opsani_dev = "servo.connectors.opsani_dev:OpsaniDevConnector"
scripts = "servo.connectors.scripts:ScriptsConnector"
[build-system]
requires = ["poetry>=0.12"]
build-backend = "poetry.masonry.api"
[tool.isort]
profile = "black"
line_length = 120
known_first_party = "tests"
src_paths = ["servo", "tests"]
[tool.nitpick]
style = "nitpick-style.toml"
[tool.flakehell]
base = "https://raw.githubusercontent.com/life4/flakehell/master/pyproject.toml"
exclude = ["README.md", "docs", "tests"]
format = "grouped"
max_line_length = 120
show_source = true
[tool.flakehell.plugins]
pycodestyle = ["+*"]
pyflakes = ["+*"]
nitpick = ["+*"]
mccabe = ["+*"]
# enable everything that starts from `flake8-`
"flake8-*" = ["+*"]
# disable pylint -- raising mysterious errors
pylint = ["-*"]
[tool.flakehell.exceptions."tests/"]
pycodestyle = ["-*"]
pyflakes = ["-*"]