2021-12-06 14:30:08 +01:00
|
|
|
[tool.poetry]
|
|
|
|
name = "bgpranking"
|
|
|
|
version = "2.0"
|
|
|
|
description = "BGP Ranking is a software to rank AS numbers based on their malicious activities."
|
|
|
|
authors = ["Raphaël Vinot <raphael.vinot@circl.lu>"]
|
|
|
|
license = "AGPLv3"
|
|
|
|
|
|
|
|
[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"
|
|
|
|
|
|
|
|
archiver = "bin.archiver:main"
|
|
|
|
asn_descriptions = "bin.asn_descriptions:main"
|
|
|
|
dbinsert = "bin.dbinsert:main"
|
|
|
|
fetcher = "bin.fetcher:main"
|
|
|
|
parser = "bin.parser:main"
|
|
|
|
ranking = "bin.ranking:main"
|
|
|
|
sanitizer = "bin.sanitizer:main"
|
|
|
|
ssfetcher = "bin.ssfetcher:main"
|
|
|
|
|
|
|
|
|
|
|
|
[tool.poetry.dependencies]
|
2022-12-12 11:41:13 +01:00
|
|
|
python = "^3.8.1"
|
2023-03-22 10:23:03 +01:00
|
|
|
redis = {version = "^4.5.2", extras = ["hiredis"]}
|
|
|
|
flask-restx = "^1.1.0"
|
2021-12-06 14:30:08 +01:00
|
|
|
gunicorn = "^20.1.0"
|
|
|
|
python-dateutil = "^2.8.2"
|
2023-01-06 02:16:00 +01:00
|
|
|
pyipasnhistory = "^2.1.2"
|
2022-05-24 18:48:41 +02:00
|
|
|
pycountry = "^22.3.5"
|
2023-03-22 10:23:03 +01:00
|
|
|
beautifulsoup4 = "^4.12.0"
|
2023-02-15 23:47:42 +01:00
|
|
|
aiohttp = "^3.8.4"
|
2021-12-06 14:30:08 +01:00
|
|
|
Bootstrap-Flask = "^1.8.0"
|
|
|
|
pid = "^3.0.4"
|
2022-01-18 14:23:23 +01:00
|
|
|
pybgpranking2 = "^2.0.1"
|
2021-12-06 14:30:08 +01:00
|
|
|
|
|
|
|
[tool.poetry.dev-dependencies]
|
2023-03-22 10:23:03 +01:00
|
|
|
ipython = "^8.11.0"
|
|
|
|
mypy = "^1.1.1"
|
|
|
|
types-setuptools = "^67.6.0.5"
|
|
|
|
types-redis = "^4.5.2.0"
|
|
|
|
types-requests = "^2.28.11.15"
|
|
|
|
types-python-dateutil = "^2.8.19.10"
|
2021-12-06 14:30:08 +01:00
|
|
|
|
|
|
|
[build-system]
|
2023-02-15 23:47:42 +01:00
|
|
|
requires = ["poetry-core>=1.2"]
|
2021-12-06 14:30:08 +01:00
|
|
|
build-backend = "poetry.core.masonry.api"
|
|
|
|
|
|
|
|
[tool.mypy]
|
|
|
|
python_version = 3.8
|
|
|
|
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
|