[tool.poetry] name = "lookyloo" version = "1.9.2" 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.26" flask = "^2.0.2" gunicorn = "^20.1.0" cchardet = "^2.1.7" redis = {version = "^4.0.2", extras = ["hiredis"]} beautifulsoup4 = "^4.10" bootstrap-flask = "^1.8.0" defang = "^0.5.3" vt-py = "^0.8.0" pyeupi = "^1.1" scrapysplashwrapper = "^1.9.3" pysanejs = "^2.0" har2tree = "^1.9.1" pylookyloo = "^1.9" dnspython = "^2.1.0" pytaxonomies = "^1.4.1" pymisp = {version = "^2.4.151", extras = ["url"]} python-magic = {version = "^0.4.22", optional = true} # pydeep requires libfuzzy-dev, and is only used in the MISP export module pydeep = {version = "^0.4", optional = true} Pillow = "^8.3.2" lief = "^0.11.4" Flask-Login = "^0.5.0" flask-restx = "^0.5.1" rich = "^10.14.0" pyphishtanklookup = "^1.0.1" chardet = "^4.0.0" Flask-Cors = "^3.0.10" [tool.poetry.extras] misp = ['python-magic', 'pydeep'] [tool.poetry.dev-dependencies] mypy = "^0.910" ipython = "^7.29.0" types-redis = "^4.0" types-requests = "^2.26" types-Flask = "^1.1.5" types-pkg-resources = "^0.1.2" [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