[tool.poetry] name = "lookyloo" version = "1.11.1" description = "Web interface to track the trackers." authors = ["Raphaƫl Vinot "] license = "BSD-3-Clause" repository = "https://github.com/Lookyloo/lookyloo" homepage = "https://www.lookyloo.eu" documentation = "https://www.lookyloo.eu/docs/main/" readme = "README.md" 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" shutdown = "bin.shutdown:main" run_backend = "bin.run_backend:main" async_capture = "bin.async_capture:main" background_indexer = "bin.background_indexer:main" archiver = "bin.archiver:main" processing = "bin.background_processing:main" start_website = "bin.start_website:main" [tool.poetry.dependencies] python = ">=3.8,<3.11" requests = "^2.27" flask = "^2.0.3" gunicorn = "^20.1.0" cchardet = "^2.1.7" redis = {version = "^4.3.1", extras = ["hiredis"]} beautifulsoup4 = "^4.11.1" bootstrap-flask = "^2.0.2" defang = "^0.5.3" vt-py = "^0.14.0" pyeupi = "^1.1" pysanejs = "^2.0" pylookyloo = "^1.10.0" dnspython = "^2.2.1" pytaxonomies = "^1.5.0" pymisp = {version = "^2.4.157", extras = ["url"]} python-magic = {version = "^0.4.22", optional = true} pydeep2 = {version = "^0.5.1", optional = true} Pillow = "^9.1.1" flask-restx = "^0.5.1" rich = "^12.4.1" pyphishtanklookup = "^1.0.1" chardet = "^4.0.0" Flask-Cors = "^3.0.10" pyhashlookup = "^1.1.1" lief = "^0.12.1" ua-parser = "^0.10.0" Flask-Login = "^0.6.1" har2tree = "^1.11.7" playwrightcapture = "^0.2.2" [tool.poetry.extras] misp = ['python-magic', 'pydeep2'] [tool.poetry.dev-dependencies] mypy = "^0.950" ipython = "^8.2.0" types-redis = "^4.2.5" types-requests = "^2.27.27" types-Flask = "^1.1.6" types-pkg-resources = "^0.1.3" types-Deprecated = "^1.2.8" types-python-dateutil = "^2.8.16" types-beautifulsoup4 = "^4.11.1" types-setuptools = "^57.4.15" types-Pillow = "^9.0.15" [build-system] requires = ["poetry_core>=1.0", "setuptools"] 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