lookyloo/pyproject.toml

97 lines
2.5 KiB
TOML
Raw Normal View History

2020-01-21 17:39:18 +01:00
[tool.poetry]
name = "lookyloo"
2021-09-30 09:25:17 +02:00
version = "1.9.2"
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"
requests = "^2.26"
2021-10-07 18:33:40 +02:00
flask = "^2.0.2"
2021-05-12 06:24:41 +02:00
gunicorn = "^20.1.0"
cchardet = "^2.1.7"
2021-11-22 18:32:31 +01:00
redis = {version = "^4.0.2", extras = ["hiredis"]}
2021-09-08 12:49:29 +02:00
beautifulsoup4 = "^4.10"
bootstrap-flask = "^1.8.0"
2020-03-16 13:51:21 +01:00
defang = "^0.5.3"
2021-11-10 08:07:29 +01:00
vt-py = "^0.8.0"
2021-05-20 21:53:13 +02:00
pyeupi = "^1.1"
scrapysplashwrapper = "^1.9.3"
2021-09-29 23:36:24 +02:00
pysanejs = "^2.0"
2021-10-07 18:33:40 +02:00
har2tree = "^1.9.1"
2021-09-28 17:54:26 +02:00
pylookyloo = "^1.9"
2021-05-12 06:24:41 +02:00
dnspython = "^2.1.0"
2021-08-17 12:14:03 +02:00
pytaxonomies = "^1.4.1"
2021-11-22 18:32:31 +01:00
pymisp = {version = "^2.4.151", extras = ["url"]}
python-magic = {version = "^0.4.22", optional = true}
2020-12-08 17:05:30 +01:00
# pydeep requires libfuzzy-dev, and is only used in the MISP export module
pydeep = {version = "^0.4", optional = true}
2021-09-03 15:26:21 +02:00
Pillow = "^8.3.2"
lief = "^0.11.4"
Flask-Login = "^0.5.0"
2021-09-02 15:08:49 +02:00
flask-restx = "^0.5.1"
2021-11-18 19:43:56 +01:00
rich = "^10.14.0"
2021-09-16 16:33:44 +02:00
pyphishtanklookup = "^1.0.1"
chardet = "^4.0.0"
2021-11-09 01:47:39 +01:00
Flask-Cors = "^3.0.10"
2020-12-08 17:05:30 +01:00
[tool.poetry.extras]
misp = ['python-magic', 'pydeep']
2020-01-21 17:39:18 +01:00
[tool.poetry.dev-dependencies]
2021-06-23 18:41:55 +02:00
mypy = "^0.910"
ipython = "^7.29.0"
2021-11-26 01:36:59 +01:00
types-redis = "^4.0"
2021-11-15 19:08:35 +01:00
types-requests = "^2.26"
2021-11-10 08:07:29 +01:00
types-Flask = "^1.1.5"
2021-06-11 21:15:27 +02:00
types-pkg-resources = "^0.1.2"
2020-01-21 17:39:18 +01:00
[build-system]
2020-10-07 16:48:02 +02:00
requires = ["poetry_core>=1.0", "setuptools"]
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