-
Notifications
You must be signed in to change notification settings - Fork 14
/
Copy pathpyproject.toml
60 lines (54 loc) · 1.69 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
[tool.poetry]
name = "har-transformer"
version = "2.0.0"
description = "A tool to convert HAR files into a locustfile."
authors = [
"Serhii Cherniavskyi <[email protected]>",
"Thibaut Le Page <[email protected]>",
"Brian Maher <[email protected]>",
"Oliwia Zaremba <[email protected]>"
]
license = "MIT"
readme = "README.rst"
homepage = "https://transformer.readthedocs.io/"
repository = "https://github.com/zalando-incubator/transformer"
keywords = ["load testing", "locust", "har"]
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Topic :: Software Development :: Testing :: Traffic Generation",
"Topic :: Software Development :: Code Generators",
"Topic :: Internet :: WWW/HTTP",
]
packages = [{ include = "transformer" }]
[tool.poetry.scripts]
transformer = "transformer.cli:script_entrypoint"
[tool.poetry.dependencies]
python = "^3.6"
pendulum = "^2.0"
chevron = "^0.13"
docopt = "^0.6.2"
ecological = "^1.6"
dataclasses = "^0.6.0"
sphinx = { version = "^1.8", optional = true }
sphinx-autodoc-typehints = { version = "^1.6", optional = true }
sphinx-issues = { version = "^1.2", optional = true }
requests = "^2.21"
[tool.poetry.extras]
docs = ["sphinx", "sphinx-autodoc-typehints", "sphinx-issues"]
[tool.poetry.dev-dependencies]
locust = "^1.0.2"
pytest-cov = "*"
pytest-mock = "^1.10"
black = {version = "*",allow-prereleases = true}
flake8 = "^3.7"
flake8-bugbear = "^18.8"
flake8-docstrings = "^1.3"
flake8-tidy-imports = "^2.0"
tomlkit = "^0.5.3"
readme_renderer = "^24.0"
pytest = "^5.4.3"
hypothesis = "^5.16.0"
[build-system]
requires = ["poetry>=0.12"]
build-backend = "poetry.masonry.api"