-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathpyproject.toml
69 lines (61 loc) · 1.86 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
66
67
68
69
[tool.poetry]
name = "murakami"
version = "0.1.0"
description = "A webthings-compliant network measurement tool from M-Lab."
authors = ["Josh King <josh@throneless.tech>", "Rae Gaines <rae@throneless.tech>"]
license = "Apache-2.0"
readme = "README.md"
repository = "https://github.com/m-lab/murakami"
[tool.poetry.scripts]
murakami = 'murakami.__main__:main'
murakami-convert = 'scripts.convert:main'
murakami-upload = 'scripts.upload:main'
[tool.poetry.dependencies]
python = "^3.6"
webthing = "^0.12.0"
configargparse = "^0.14.0"
tomlkit = "^0.5.5"
apscheduler = "^3.6"
paramiko = "^2.6"
scp = "^0.13.2"
jsonlines = "^1.2"
livejson = "^1.8"
google-cloud-storage = "^1.26.0"
[tool.poetry.dev-dependencies]
pytest = "^3.0"
pylint = "^2.4"
portray = "^1.3"
pdocs = "^1.0"
tox = "^3.14"
pytest-cov = "^2.8"
[tool.poetry.plugins."murakami.runners"]
"dash" = "murakami.runners.dash:DashClient"
"ndt5" = "murakami.runners.ndt5:Ndt5Client"
"ndt7" = "murakami.runners.ndt7:Ndt7Client"
"ndt5custom" = "murakami.runners.ndt5custom:Ndt5ClientCustom"
"ndt7custom" = "murakami.runners.ndt7custom:Ndt7ClientCustom"
"speedtest" = "murakami.runners.speedtest:SpeedtestClient"
"ooniprobe" = "murakami.runners.ooniprobe:OONIProbeClient"
[tool.poetry.plugins."murakami.exporters"]
"local" = "murakami.exporters.local:LocalExporter"
"scp" = "murakami.exporters.scp:SCPExporter"
"gcs" = "murakami.exporters.gcs:GCSExporter"
"http" = "murakami.exporters.http:HTTPExporter"
[tool.poetry.plugins."murakami.selection"]
"all" = "murakami.selection.all:AllSelection"
"random" = "murakami.selection.rand:RandomSelection"
[tool.tox]
legacy_tox_ini = """
[tox]
isolated_build = true
envlist = py36, py37
[testenv]
whitelist_externals = poetry
passenv = CI TRAVIS TRAVIS_*
commands =
poetry install -v
poetry run pytest --cov=./ tests/
"""
[build-system]
requires = ["poetry>=0.12"]
build-backend = "poetry.masonry.api"