forked from honesty-box/honestybox-measurement
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
65 lines (60 loc) · 1.24 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
[tool.poetry]
name = "netmeasure"
version = "1.4.0"
description = "Measure Internet connection quality."
authors = [
"James Stewart <[email protected]>",
"Stuart Dines <[email protected]>",
"James Johnson <[email protected]>"
]
maintainers = [
"James Stewart <[email protected]>",
]
packages = [
{ include = "netmeasure" },
]
repository = "https://github.com/amorphitec/netmeasure"
readme = "README.md"
[tool.poetry.dependencies]
python = ">=3.8, <4"
validators = "^0.20"
speedtest-cli = "^2.1"
requests = "^2.28"
scapy = "^2.5"
beautifulsoup4 = "^4.11.2"
exitstatus = "^2.3.0"
halo = "^0.0.31"
click = "^8.1.3"
rich = "^13.3.2"
yt-dlp = "^2023.9.24"
[tool.poetry.group.dev.dependencies]
pytest = "^7.2"
flake8 = "^3.7"
isort = "^4.3"
pytest-cov = "^4.0"
black = "^23.1"
bandit = "^1.6.2"
tox = "^4.4.6"
[tool.poetry.scripts]
netmeasure = "netmeasure.cli:cli"
[tool.tox]
legacy_tox_ini = """
[tox]
isolated_build = true
skipsdist = true
envlist = py38,py39,py310,py311
[gh-actions]
python =
3.8: py38
3.9: py39
3.10: py310
3.11: py311
[testenv]
allowlist_externals = poetry
commands =
poetry install -v
poetry run pytest --cov
"""
[build-system]
requires = ["poetry>=1.3"]
build-backend = "poetry.masonry.api"