-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
55 lines (49 loc) · 1.2 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
[tool.poetry]
name = "fetchmesh"
version = "0.3.3"
description = "A Python library for working with the RIPE Atlas anchoring mesh."
authors = ["Maxime Mouchet <[email protected]>"]
license = "MIT"
readme = "README.md"
homepage = "https://github.com/SmartMonitoringSchemes/fetchmesh"
[tool.poetry.dependencies]
python = "^3.8"
appdirs = "^1.4.4"
cached-property = "^1.5.2"
click = "^8.1.3"
mbox = {extras = ["click"], version = "^0.1.11"}
pandas = "^2.0.2"
psutil = "^5.9.5"
pytz = "^2023.3"
py-radix = "^0.10.0"
requests = "^2.31.0"
rich = "^13.4.1"
tenacity = "^8.2.2"
tqdm = "^4.65.0"
zstandard = "^0.21.0"
[tool.poetry.dev-dependencies]
hypothesis = "^6.76.0"
pre-commit = "^3.3.2"
pylint = "^2.17.4"
pytest = "^7.3.1"
pytest-cov = "^4.1.0"
sphinx = "^7.0.1"
sphinx-click = "^4.4.0"
[tool.poetry.scripts]
fetchmesh = 'fetchmesh.commands:main'
[tool.pytest.ini_options]
addopts = "--cov=fetchmesh --cov-report=xml"
[tool.pylint.messages_control]
disable = """
bad-continuation,
invalid-name,
missing-class-docstring,
missing-function-docstring,
missing-module-docstring,
line-too-long,
no-self-use,
too-few-public-methods
"""
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"