-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
41 lines (35 loc) · 1.14 KB
/
pyproject.toml
File metadata and controls
41 lines (35 loc) · 1.14 KB
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
[tool.poetry]
name = "locuplot"
version = "0.1.3"
description = "Python application for generating plot from locust statistics csv"
authors = ["pawndev <[email protected]>"]
maintainers = ["pawndev <[email protected]>"]
readme = "README.md"
repository = "https://github.com/pawndev/locuplot"
keywords = [ "locust", "plot", "graph" ]
license = "MIT"
[tool.poetry.urls]
"Bug Tracker" = "https://github.com/pawndev/locuplot/issues"
issues = "https://github.com/pawndev/locuplot/issues"
[tool.poetry.scripts]
locuplot = "locuplot.main:main"
[tool.poetry.dependencies]
python = "^3.8"
pandas = "^1.0.4"
matplotlib = "^3.2.1"
numpy = "^1.18.5"
logzero = "^1.5.0"
mpld3 = "^0.3"
jinja2 = "^2.11.2"
[tool.poetry.dev-dependencies]
pytest = "^5.2"
locust = "^1.0.3"
taskipy = "^1.2.1"
jupyter = "^1.0.0"
[tool.taskipy.tasks]
test = "python -m unittest tests/test_*.py"
locust = "locust -f example/locustfile.py --host=https://ratelimit.pawndev.com --headless -u 10 -r 2 -t 10m --csv=example/stats/sample --csv-full-history"
jupyter = "jupyter notebook --notebook-dir=example/ --port 9999"
[build-system]
requires = ["poetry>=0.12"]
build-backend = "poetry.masonry.api"