-
Notifications
You must be signed in to change notification settings - Fork 13
Expand file tree
/
Copy pathpyproject.toml
More file actions
64 lines (55 loc) · 1.64 KB
/
pyproject.toml
File metadata and controls
64 lines (55 loc) · 1.64 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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
[tool.poetry]
name = "ipasnhistory"
version = "2.1"
description = "IP ASN History helps to figure out which prefix and ASN is announcing a specific IP."
authors = ["Raphaël Vinot <raphael.vinot@circl.lu>"]
license = "AGPL"
[tool.poetry.scripts]
start = "bin.start:main"
stop = "bin.stop:main"
update = "bin.update:main"
shutdown = "bin.shutdown:main"
run_backend = "bin.run_backend:main"
start_website = "bin.start_website:main"
caida_downloader = "bin.caida_dl:main"
caida_loader = "bin.caida_loader:main"
ripe_downloader = "bin.ripe_dl:main"
ripe_loader = "bin.ripe_loader:main"
lookup_manager = "bin.lookup_manager:main"
lookup = "bin.lookup:main"
[tool.poetry.dependencies]
python = "^3.10"
redis = {version = "^5.1.0,<6.0", extras = ["hiredis"]}
flask-restx = "^1.3.2"
gunicorn = "^23.0.0"
pytricia = {git = "https://github.com/D4-project/pytricia.git"}
aiohttp = "^3.13.3"
beautifulsoup4 = "^4.14.3"
python-dateutil = "^2.9.0.post0"
bgpdumpy = {version = "^1.1.4", optional = true}
pyipasnhistory = "^2.1.5"
setuptools = "^80.9.0"
[tool.poetry.group.dev.dependencies]
mypy = "^1.19.1"
types-setuptools = "^80.9.0.20251223"
types-redis = "^4.6.0.20241004"
types-requests = "^2.32.4.20260107"
types-python-dateutil = "^2.9.0.20251115"
[tool.poetry.extras]
ripe = ["bgpdumpy"]
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.mypy]
python_version = 3.9
check_untyped_defs = true
ignore_errors = false
ignore_missing_imports = false
strict_optional = true
no_implicit_optional = true
warn_unused_ignores = true
warn_redundant_casts = true
warn_unused_configs = true
warn_unreachable = true
show_error_context = true
pretty = true