-
Notifications
You must be signed in to change notification settings - Fork 1
/
pyproject.toml
62 lines (57 loc) · 1.37 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
[tool.poetry]
name = "honestybox-measurement"
version = "1.1.0"
description = "A framework for measuring things and producing structured results."
authors = [
"James Stewart <[email protected]>",
"Stuart Dines <[email protected]>",
"James Johnson <[email protected]>"
]
maintainers = [
"Honesty Box <[email protected]>",
]
packages = [
{ include = "measurement" },
]
repository = "https://github.com/honesty-box/honestybox-measurement/"
readme = "README.md"
[tool.poetry.dependencies]
python = ">=3.5, <4"
validators = "^0.13.0"
dataclasses = {version = "^0.6.0", python = "^3.6.0"}
six = "^1.12"
speedtest-cli = "^2.1"
requests = "^2.23.0"
statistics = "^1.0.3"
youtube_dl = "^2020.6.16"
scapy = {version = "^2.4.4-rc.2", allow-prereleases = true}
bs4 = "^0.0.1"
[tool.poetry.dev-dependencies]
pytest = "^3.0"
tox = "^3.13"
flake8 = "^3.7"
isort = "^4.3"
pytest-cov = "^2.7"
black = {version = "^19.10b0", allow-prereleases = true, python = ">=3.6"}
bandit = "^1.6.2"
[tool.tox]
legacy_tox_ini = """
[tox]
isolated_build = true
skipsdist = true
envlist = py35,py36,py37,py38
[gh-actions]
python =
3.5: py35
3.6: py36
3.7: py37
3.8: py38, mypy
[testenv]
whitelist_externals = poetry
commands =
poetry install -v
poetry run pytest --cov
"""
[build-system]
requires = ["poetry>=0.12"]
build-backend = "poetry.masonry.api"