lookyloo/pyproject.toml

91 lines
2.3 KiB
TOML

[tool.poetry]
name = "lookyloo"
version = "1.7.0-dev"
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"
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_website = "bin.start_website:main"
start = "bin.start:main"
run_backend = "bin.run_backend:main"
async_capture = "bin.async_capture:main"
shutdown = "bin.shutdown:main"
stop = "bin.stop:main"
rebuild_caches = "bin.rebuild_caches:main"
update = "bin.update:main"
background_indexer = "bin.background_indexer:main"
[tool.poetry.dependencies]
python = "^3.8"
requests = "^2.25.1"
gunicorn = "^20.1.0"
cchardet = "^2.1.7"
redis = "^3.5.3"
beautifulsoup4 = "^4.9.3"
bootstrap-flask = "^1.7.0"
defang = "^0.5.3"
vt-py = "^0.6.2"
pyeupi = "^1.1"
scrapysplashwrapper = "^1.6.3"
pysanejs = "^1.4"
har2tree = "^1.6.1"
pylookyloo = "^1.6"
dnspython = "^2.1.0"
pytaxonomies = "^1.3"
pymisp = {version = "^2.4.143", 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.0"
lief = "^0.11.4"
Flask-Login = "^0.5.0"
flask-restx = "^0.5.0"
[tool.poetry.extras]
misp = ['python-magic', 'pydeep']
[tool.poetry.dev-dependencies]
mypy = "^0.910"
ipython = "^7.25.0"
types-redis = "^3.5.4"
types-requests = "^2.25.0"
types-Flask = "^1.1.0"
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