2020-01-21 17:39:18 +01:00
|
|
|
[tool.poetry]
|
|
|
|
name = "lookyloo"
|
2024-07-03 14:42:18 +02:00
|
|
|
version = "1.25.0"
|
2020-01-21 17:39:18 +01:00
|
|
|
description = "Web interface to track the trackers."
|
|
|
|
authors = ["Raphaël Vinot <raphael.vinot@circl.lu>"]
|
|
|
|
license = "BSD-3-Clause"
|
2020-06-08 16:37:59 +02:00
|
|
|
repository = "https://github.com/Lookyloo/lookyloo"
|
2021-04-01 18:56:52 +02:00
|
|
|
homepage = "https://www.lookyloo.eu"
|
|
|
|
documentation = "https://www.lookyloo.eu/docs/main/"
|
2020-01-21 17:39:18 +01:00
|
|
|
|
2020-02-03 18:31:46 +01:00
|
|
|
readme = "README.md"
|
|
|
|
|
2020-01-21 17:39:18 +01:00
|
|
|
classifiers = [
|
|
|
|
'License :: OSI Approved :: BSD License',
|
|
|
|
'Operating System :: POSIX :: Linux',
|
|
|
|
'Intended Audience :: Science/Research',
|
|
|
|
'Intended Audience :: Telecommunications Industry',
|
|
|
|
'Intended Audience :: Information Technology',
|
|
|
|
'Programming Language :: Python :: 3',
|
|
|
|
'Topic :: Security',
|
|
|
|
'Topic :: Internet',
|
|
|
|
]
|
|
|
|
|
|
|
|
[tool.poetry.scripts]
|
2020-10-03 21:19:43 +02:00
|
|
|
start = "bin.start:main"
|
|
|
|
stop = "bin.stop:main"
|
|
|
|
update = "bin.update:main"
|
2021-09-02 15:08:49 +02:00
|
|
|
shutdown = "bin.shutdown:main"
|
|
|
|
run_backend = "bin.run_backend:main"
|
|
|
|
async_capture = "bin.async_capture:main"
|
2021-03-12 16:53:00 +01:00
|
|
|
background_indexer = "bin.background_indexer:main"
|
2024-03-05 20:51:21 +01:00
|
|
|
background_build_captures = "bin.background_build_captures:main"
|
|
|
|
background_full_indexer = "bin.background_indexer:main_full_indexer"
|
2021-08-20 17:46:22 +02:00
|
|
|
archiver = "bin.archiver:main"
|
2021-08-24 18:32:54 +02:00
|
|
|
processing = "bin.background_processing:main"
|
2021-09-02 15:08:49 +02:00
|
|
|
start_website = "bin.start_website:main"
|
2024-08-07 13:47:55 +02:00
|
|
|
scripts_controller = "bin.scripts_controller:main"
|
2020-01-21 17:39:18 +01:00
|
|
|
|
|
|
|
|
|
|
|
[tool.poetry.dependencies]
|
2024-02-05 16:33:46 +01:00
|
|
|
python = ">=3.8.1,<3.13"
|
2024-05-31 14:10:33 +02:00
|
|
|
requests = "^2.32.3"
|
2024-04-09 17:44:13 +02:00
|
|
|
flask = "^3.0.3"
|
2024-08-15 11:52:44 +02:00
|
|
|
gunicorn = {version = "^23.0.0", extras = ["setproctitle"]}
|
2023-11-01 09:59:43 +01:00
|
|
|
charset-normalizer = "^3.3.2"
|
2024-08-05 17:17:43 +02:00
|
|
|
redis = {version = "^5.0.8", extras = ["hiredis"]}
|
2024-01-18 12:02:44 +01:00
|
|
|
beautifulsoup4 = {version = "^4.12.3", extras = ["lxml", "charset_normalizer"]}
|
2024-04-09 17:44:13 +02:00
|
|
|
bootstrap-flask = "^2.4.0"
|
2020-03-16 13:51:21 +01:00
|
|
|
defang = "^0.5.3"
|
2024-04-17 10:56:32 +02:00
|
|
|
vt-py = "^0.18.0"
|
2023-08-25 14:21:58 +02:00
|
|
|
pyeupi = "^1.3.0"
|
2023-08-20 16:21:33 +02:00
|
|
|
pysanejs = "^2.0.2"
|
2024-07-06 14:40:05 +02:00
|
|
|
pylookyloo = "^1.25.0"
|
2024-02-19 16:17:42 +01:00
|
|
|
dnspython = "^2.6.1"
|
2022-05-20 01:05:52 +02:00
|
|
|
pytaxonomies = "^1.5.0"
|
2024-08-22 15:22:52 +02:00
|
|
|
pymisp = {version = "^2.4.196", extras = ["url", "fileobjects"]}
|
2024-07-03 14:42:18 +02:00
|
|
|
Pillow = "^10.4.0"
|
2023-12-11 12:14:43 +01:00
|
|
|
flask-restx = "^1.3.0"
|
2024-03-05 20:51:21 +01:00
|
|
|
rich = "^13.7.1"
|
2024-07-06 14:40:05 +02:00
|
|
|
pyphishtanklookup = "^1.4.0"
|
2024-05-07 10:25:39 +02:00
|
|
|
Flask-Cors = "^4.0.1"
|
2024-05-28 10:56:32 +02:00
|
|
|
pyhashlookup = "^1.2.4"
|
2024-08-05 17:17:43 +02:00
|
|
|
lief = "^0.15"
|
2023-07-18 11:58:53 +02:00
|
|
|
ua-parser = "^0.18.0"
|
2023-11-01 09:59:43 +01:00
|
|
|
Flask-Login = "^0.6.3"
|
2024-07-03 14:42:18 +02:00
|
|
|
har2tree = "^1.25.0"
|
2022-07-15 18:53:49 +02:00
|
|
|
passivetotal = "^2.5.9"
|
2024-08-22 15:22:52 +02:00
|
|
|
werkzeug = "^3.0.4"
|
2022-11-03 13:57:22 +01:00
|
|
|
filetype = "^1.2.0"
|
2024-07-03 14:42:18 +02:00
|
|
|
pypandora = "^1.9.0"
|
2024-08-16 14:32:58 +02:00
|
|
|
lacuscore = "^1.10.11"
|
2024-07-03 14:42:18 +02:00
|
|
|
pylacus = "^1.10.0"
|
2022-12-23 16:36:11 +01:00
|
|
|
pyipasnhistory = "^2.1.2"
|
2024-08-22 15:22:52 +02:00
|
|
|
publicsuffixlist = "^1.0.2.20240822"
|
2023-02-02 15:18:26 +01:00
|
|
|
pyfaup = "^1.2"
|
2023-08-04 14:03:12 +02:00
|
|
|
chardet = "^5.2.0"
|
2024-07-24 15:33:42 +02:00
|
|
|
pysecuritytxt = "^1.3.2"
|
2024-08-22 15:22:52 +02:00
|
|
|
pylookyloomonitoring = "^1.1.4"
|
2024-02-05 16:33:46 +01:00
|
|
|
pytz = {"version" = "^2024.1", python = "<3.9"}
|
2024-07-03 14:42:18 +02:00
|
|
|
s3fs = "^2024.6.1"
|
2023-10-22 00:57:46 +02:00
|
|
|
urllib3 = [
|
|
|
|
{version = "<2", python = "<3.10"},
|
|
|
|
{version = "^2.0.7", python = ">=3.10"}
|
|
|
|
]
|
2024-05-28 10:56:32 +02:00
|
|
|
pypdns = "^2.2.3"
|
2024-02-22 23:51:01 +01:00
|
|
|
mmh3 = "^4.1.0"
|
2024-08-13 20:05:20 +02:00
|
|
|
puremagic = "^1.27"
|
2024-08-07 13:54:55 +02:00
|
|
|
psutil = "^6.0.0"
|
2020-12-08 17:05:30 +01:00
|
|
|
|
2022-10-04 20:08:53 +02:00
|
|
|
[tool.poetry.group.dev.dependencies]
|
2024-08-05 17:17:43 +02:00
|
|
|
mypy = "^1.11.1"
|
2023-05-04 10:20:31 +02:00
|
|
|
ipython = [
|
|
|
|
{version = "<8.13.0", python = "<3.9"},
|
2023-12-22 15:32:50 +01:00
|
|
|
{version = "^8.18.0", python = ">=3.9"},
|
|
|
|
{version = "^8.19.0", python = ">=3.10"}
|
2023-05-04 10:20:31 +02:00
|
|
|
]
|
2023-10-22 00:57:46 +02:00
|
|
|
types-requests = [
|
|
|
|
{version = "<2.31", python = "<3.10"},
|
|
|
|
{version = "^2.31.0.10", python = ">=3.10"}
|
|
|
|
]
|
2024-08-22 15:22:52 +02:00
|
|
|
types-redis = {version = "^4.6.0.20240819"}
|
2021-12-27 23:05:22 +01:00
|
|
|
types-pkg-resources = "^0.1.3"
|
2024-03-11 10:16:58 +01:00
|
|
|
types-Deprecated = "^1.2.9.20240311"
|
2024-08-22 15:22:52 +02:00
|
|
|
types-python-dateutil = "^2.9.0.20240821"
|
2024-05-14 18:58:55 +02:00
|
|
|
types-beautifulsoup4 = "^4.12.0.20240511"
|
2024-08-22 15:22:52 +02:00
|
|
|
types-Pillow = "^10.2.0.20240822"
|
2024-04-17 10:56:32 +02:00
|
|
|
types-pytz = "^2024.1.0.20240417"
|
2024-08-07 13:54:55 +02:00
|
|
|
types-psutil = "^6.0.0.20240621"
|
2020-01-21 17:39:18 +01:00
|
|
|
|
|
|
|
[build-system]
|
2023-04-28 18:30:38 +02:00
|
|
|
requires = ["poetry_core"]
|
2020-10-03 21:19:43 +02:00
|
|
|
build-backend = "poetry.core.masonry.api"
|