lookyloo/pyproject.toml

106 lines
2.6 KiB
TOML
Raw Normal View History

2020-01-21 17:39:18 +01:00
[tool.poetry]
name = "lookyloo"
2022-08-25 14:33:06 +02:00
version = "1.15.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]
python = ">=3.8,<3.11"
2022-07-11 10:24:40 +02:00
requests = "^2.28.1"
flask = "^2.1.3"
2021-05-12 06:24:41 +02:00
gunicorn = "^20.1.0"
cchardet = "^2.1.7"
2022-06-28 18:04:14 +02:00
redis = {version = "^4.3.4", extras = ["hiredis"]}
2022-04-09 12:23:30 +02:00
beautifulsoup4 = "^4.11.1"
bootstrap-flask = "^2.1.0"
2020-03-16 13:51:21 +01:00
defang = "^0.5.3"
2022-08-19 09:33:26 +02:00
vt-py = "^0.15.0"
2021-05-20 21:53:13 +02:00
pyeupi = "^1.1"
pysanejs = "^2.0.1"
pylookyloo = "^1.15.0"
2022-03-10 00:42:41 +01:00
dnspython = "^2.2.1"
2022-05-20 01:05:52 +02:00
pytaxonomies = "^1.5.0"
2022-08-10 18:53:00 +02:00
pymisp = {version = "^2.4.160.1", extras = ["url"]}
2022-06-09 14:56:19 +02:00
python-magic = {version = "^0.4.27", optional = true}
pydeep2 = {version = "^0.5.1", optional = true}
2022-07-11 10:24:40 +02:00
Pillow = "^9.2.0"
2021-09-02 15:08:49 +02:00
flask-restx = "^0.5.1"
2022-07-11 17:07:36 +02:00
rich = "^12.5.1"
pyphishtanklookup = "^1.1"
2021-11-09 01:47:39 +01:00
Flask-Cors = "^3.0.10"
2022-08-31 17:38:20 +02:00
pyhashlookup = "^1.2.1"
2022-04-09 12:23:30 +02:00
lief = "^0.12.1"
2022-08-30 01:11:32 +02:00
ua-parser = "^0.16.1"
Flask-Login = "^0.6.2"
har2tree = "^1.15.5"
passivetotal = "^2.5.9"
werkzeug = "2.1.2"
filetype = "^1.1.0"
pypandora = "^1.1.2"
lacuscore = "^0.3.2"
pylacus = "^0.3.0"
2020-12-08 17:05:30 +01:00
[tool.poetry.extras]
misp = ['python-magic', 'pydeep2']
2020-01-21 17:39:18 +01:00
[tool.poetry.dev-dependencies]
2022-07-19 17:54:45 +02:00
mypy = "^0.971"
2022-09-06 14:50:24 +02:00
ipython = "^8.5.0"
2022-09-05 18:47:16 +02:00
types-redis = "^4.3.20"
types-requests = "^2.28.11"
2021-11-30 14:59:48 +01:00
types-Flask = "^1.1.6"
2021-12-27 23:05:22 +01:00
types-pkg-resources = "^0.1.3"
2022-06-26 17:08:24 +02:00
types-Deprecated = "^1.2.9"
2022-07-19 17:54:45 +02:00
types-python-dateutil = "^2.8.19"
2022-09-06 14:50:24 +02:00
types-beautifulsoup4 = "^4.11.6"
types-Pillow = "^9.2.2"
2020-01-21 17:39:18 +01:00
[build-system]
requires = ["poetry_core>=1.2"]
build-backend = "poetry.core.masonry.api"
2021-06-11 19:15:03 +02:00
[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