-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpyproject.toml
54 lines (48 loc) · 1.51 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
[tool.poetry]
name = "zelt"
version = "1.2.15"
description = "Zalando end-to-end load tester"
authors = [
"Brian Maher <[email protected]>",
"Oliwia Zaremba <[email protected]>",
"Thibaut Le Page <[email protected]>"
]
license = "MIT"
readme = "README.rst"
homepage = "https://github.com/zalando-incubator/zelt"
repository = "https://github.com/zalando-incubator/zelt"
keywords = ["load testing", "locust", "kubernetes"]
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Topic :: Software Development :: Testing :: Traffic Generation",
"Topic :: Internet :: WWW/HTTP",
]
packages = [{include = "zelt"}, { include = "main.py"}]
[tool.poetry.dependencies]
python = "^3.6"
har-transformer = "^1.0"
kubernetes = ">=10.0.1,!=10.1.0,<11" # Poetry/pip doesn't work with "^10.0.1,!=10.1.0"
locustio = "^0.9.0"
boto3 = "^1.9"
greenlet = "^0.4.15"
tenacity = "^5.0"
docopt = "^0.6.2"
pyyaml = "^5.1"
sphinx = { version = "^1.8", optional = true }
sphinx-autodoc-typehints = { version = "^1.6", optional = true }
sphinx-issues = { version = "^1.2", optional = true }
[tool.poetry.extras]
docs = ["sphinx", "sphinx-autodoc-typehints", "sphinx-issues"]
[tool.poetry.dev-dependencies]
pytest-cov = "^2.6"
pytest = "^4.3"
pylint = "^2.3"
pytest-watch = "^4.2"
readme_renderer = "^24.0"
black = {version = "^19",allow-prereleases = true}
[tool.poetry.scripts]
zelt = "main:cli"
[build-system]
requires = ["poetry>=0.12"]
build-backend = "poetry.masonry.api"