lookyloo/pyproject.toml

106 lines
2.7 KiB
TOML
Raw Normal View History

2020-01-21 17:39:18 +01:00
[tool.poetry]
name = "lookyloo"
2022-12-29 14:47:35 +01:00
version = "1.17.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]
2022-10-31 11:51:06 +01:00
python = ">=3.8,<3.12"
2023-01-16 15:11:40 +01:00
requests = "^2.28.2"
2023-02-16 16:11:03 +01:00
flask = "^2.2.3"
2021-05-12 06:24:41 +02:00
gunicorn = "^20.1.0"
charset-normalizer = "^3.0.1"
2023-02-09 15:38:58 +01:00
redis = {version = "^4.5.1", extras = ["hiredis"]}
beautifulsoup4 = "^4.11.2"
bootstrap-flask = "^2.2.0"
2020-03-16 13:51:21 +01:00
defang = "^0.5.3"
vt-py = "^0.17.5"
2021-05-20 21:53:13 +02:00
pyeupi = "^1.1"
pysanejs = "^2.0.1"
2023-01-20 11:16:13 +01:00
pylookyloo = "^1.17.2"
2023-01-16 15:11:40 +01:00
dnspython = "^2.3.0"
2022-05-20 01:05:52 +02:00
pytaxonomies = "^1.5.0"
2023-01-23 11:20:28 +01:00
pymisp = {version = "^2.4.168", extras = ["url", "fileobjects"]}
2023-01-02 16:25:01 +01:00
Pillow = "^9.4.0"
2023-02-09 15:38:58 +01:00
flask-restx = "^1.0.6"
2023-01-30 16:28:38 +01:00
rich = "^13.3.1"
2023-01-03 14:14:47 +01:00
pyphishtanklookup = "^1.2"
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-11-02 11:28:45 +01:00
lief = "^0.12.3"
2022-08-30 01:11:32 +02:00
ua-parser = "^0.16.1"
Flask-Login = "^0.6.2"
2023-01-20 13:36:41 +01:00
har2tree = "^1.17.2"
passivetotal = "^2.5.9"
2023-02-16 16:11:03 +01:00
werkzeug = "^2.2.3"
2022-11-03 13:57:22 +01:00
filetype = "^1.2.0"
2023-01-02 16:25:01 +01:00
pypandora = "^1.3.0"
2023-02-23 11:08:09 +01:00
lacuscore = "^1.2.7"
2023-01-02 17:41:05 +01:00
pylacus = "^1.2.0"
2022-12-23 16:36:11 +01:00
pyipasnhistory = "^2.1.2"
publicsuffixlist = "^0.9.3"
pyfaup = "^1.2"
chardet = "^5.1.0"
pysecuritytxt = "^1.0.1"
2023-02-23 18:37:40 +01:00
pylookyloomonitoring = {git = "https://github.com/Lookyloo/PyLookylooMonitoring.git"}
2020-12-08 17:05:30 +01:00
2022-10-04 20:08:53 +02:00
[tool.poetry.group.dev.dependencies]
2023-02-23 11:08:09 +01:00
mypy = "^1.0.1"
2023-02-10 13:48:33 +01:00
ipython = "^8.10.0"
2023-02-23 11:08:09 +01:00
types-redis = "^4.5.1.3"
types-requests = "^2.28.11.14"
2021-12-27 23:05:22 +01:00
types-pkg-resources = "^0.1.3"
2023-02-23 11:08:09 +01:00
types-Deprecated = "^1.2.9.1"
types-python-dateutil = "^2.8.19.8"
types-beautifulsoup4 = "^4.11.6.7"
types-Pillow = "^9.4.0.16"
2020-01-21 17:39:18 +01:00
[build-system]
2022-09-26 15:51:14 +02:00
requires = ["poetry_core>=1.1"]
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