lookyloo/pyproject.toml

119 lines
3.0 KiB
TOML
Raw Normal View History

2020-01-21 17:39:18 +01:00
[tool.poetry]
name = "lookyloo"
2023-10-17 09:23:38 +02:00
version = "1.22.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"
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]
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"
2021-08-20 17:46:22 +02:00
archiver = "bin.archiver:main"
processing = "bin.background_processing:main"
2021-09-02 15:08:49 +02:00
start_website = "bin.start_website:main"
2020-01-21 17:39:18 +01:00
[tool.poetry.dependencies]
2023-10-22 00:57:46 +02:00
python = ">=3.8,<3.13"
2023-05-23 15:39:53 +02:00
requests = "^2.31.0"
2023-08-23 15:08:58 +02:00
flask = "^2.3.3"
2023-07-21 15:48:20 +02:00
gunicorn = "^21.2.0"
2023-10-04 11:20:52 +02:00
charset-normalizer = "^3.3.0"
redis = {version = "^5.0.1", extras = ["hiredis"]}
beautifulsoup4 = "^4.12.2"
2023-10-12 16:15:43 +02:00
bootstrap-flask = "^2.3.2"
2020-03-16 13:51:21 +01:00
defang = "^0.5.3"
vt-py = "^0.17.5"
2023-08-25 14:21:58 +02:00
pyeupi = "^1.3.0"
2023-08-20 16:21:33 +02:00
pysanejs = "^2.0.2"
2023-10-22 00:57:46 +02:00
pylookyloo = "^1.22.1"
dnspython = "^2.4.2"
2022-05-20 01:05:52 +02:00
pytaxonomies = "^1.5.0"
2023-09-15 11:31:08 +02:00
pymisp = {version = "^2.4.176", extras = ["url", "fileobjects"]}
2023-10-17 09:23:38 +02:00
Pillow = "^10.1.0"
2023-03-06 14:50:50 +01:00
flask-restx = "^1.1.0"
2023-10-04 11:20:52 +02:00
rich = "^13.6.0"
2023-08-20 16:21:33 +02:00
pyphishtanklookup = "^1.3.1"
2023-06-27 11:34:45 +02:00
Flask-Cors = "^4.0.0"
2022-08-31 17:38:20 +02:00
pyhashlookup = "^1.2.1"
2023-06-19 16:54:56 +02:00
lief = "^0.13.2"
2023-07-18 11:58:53 +02:00
ua-parser = "^0.18.0"
Flask-Login = "^0.6.2"
2023-10-17 09:23:38 +02:00
har2tree = "^1.22.0"
passivetotal = "^2.5.9"
2023-08-15 11:48:08 +02:00
werkzeug = "^2.3.7"
2022-11-03 13:57:22 +01:00
filetype = "^1.2.0"
2023-10-17 09:23:38 +02:00
pypandora = "^1.6.0"
2023-10-17 23:06:41 +02:00
lacuscore = "^1.7.1"
pylacus = "^1.7.0"
2022-12-23 16:36:11 +01:00
pyipasnhistory = "^2.1.2"
publicsuffixlist = "^0.10.0.20231020"
pyfaup = "^1.2"
2023-08-04 14:03:12 +02:00
chardet = "^5.2.0"
pysecuritytxt = "^1.2.0"
pylookyloomonitoring = "^1.1.2"
2023-09-11 16:54:14 +02:00
pytz = {"version" = "^2023.3.post1", python = "<3.9"}
2023-10-22 00:57:46 +02:00
s3fs = "^2023.10.0"
urllib3 = [
{version = "<2", python = "<3.10"},
{version = "^2.0.7", python = ">=3.10"}
]
2020-12-08 17:05:30 +01:00
2022-10-04 20:08:53 +02:00
[tool.poetry.group.dev.dependencies]
2023-10-18 14:13:28 +02:00
mypy = "^1.6.1"
2023-05-04 10:20:31 +02:00
ipython = [
{version = "<8.13.0", python = "<3.9"},
{version = "^8.13.0", python = ">=3.9"}
]
2023-10-22 00:57:46 +02:00
types-requests = [
{version = "<2.31", python = "<3.10"},
{version = "^2.31.0.10", python = ">=3.10"}
]
2023-09-25 10:37:02 +02:00
types-redis = {version = "^4.6.0.7"}
2021-12-27 23:05:22 +01:00
types-pkg-resources = "^0.1.3"
2023-07-21 15:48:20 +02:00
types-Deprecated = "^1.2.9.3"
types-python-dateutil = "^2.8.19.14"
2023-08-15 11:48:08 +02:00
types-beautifulsoup4 = "^4.12.0.6"
2023-10-17 09:23:38 +02:00
types-Pillow = "^10.1.0.0"
2023-09-25 10:37:02 +02:00
types-pytz = "^2023.3.1.1"
2020-01-21 17:39:18 +01:00
[build-system]
2023-04-28 18:30:38 +02:00
requires = ["poetry_core"]
build-backend = "poetry.core.masonry.api"
2021-06-11 19:15:03 +02:00
[tool.mypy]
2023-10-22 00:57:46 +02:00
python_version = "3.10"
2021-06-11 19:15:03 +02:00
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