2020-01-21 17:39:18 +01:00
|
|
|
[tool.poetry]
|
|
|
|
name = "lookyloo"
|
2021-02-09 16:23:21 +01:00
|
|
|
version = "1.4.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"
|
2020-06-08 16:37:59 +02:00
|
|
|
repository = "https://github.com/Lookyloo/lookyloo"
|
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]
|
2020-10-03 21:19:43 +02:00
|
|
|
start_website = "bin.start_website:main"
|
|
|
|
start = "bin.start:main"
|
|
|
|
run_backend = "bin.run_backend:main"
|
2020-11-05 14:14:33 +01:00
|
|
|
async_capture = "bin.async_capture:main"
|
2020-10-03 21:19:43 +02:00
|
|
|
shutdown = "bin.shutdown:main"
|
|
|
|
stop = "bin.stop:main"
|
|
|
|
rebuild_caches = "bin.rebuild_caches:main"
|
|
|
|
update = "bin.update:main"
|
2020-01-21 17:39:18 +01:00
|
|
|
|
|
|
|
|
|
|
|
[tool.poetry.dependencies]
|
2020-04-03 19:42:10 +02:00
|
|
|
python = "^3.7"
|
2020-12-17 06:59:56 +01:00
|
|
|
requests = "^2.25.1"
|
2020-12-02 16:59:48 +01:00
|
|
|
flask = "^1.1.2"
|
2020-10-03 21:19:43 +02:00
|
|
|
gunicorn = "^20.0.4"
|
2020-10-28 07:13:50 +01:00
|
|
|
cchardet = "^2.1.7"
|
2020-12-02 16:59:48 +01:00
|
|
|
redis = "^3.5.3"
|
|
|
|
beautifulsoup4 = "^4.9.3"
|
|
|
|
bootstrap-flask = "^1.5.1"
|
2020-03-16 13:51:21 +01:00
|
|
|
defang = "^0.5.3"
|
2020-10-20 07:27:01 +02:00
|
|
|
vt-py = "^0.6.1"
|
2020-06-09 15:06:35 +02:00
|
|
|
pyeupi = "^1.0"
|
2020-12-23 17:00:43 +01:00
|
|
|
scrapysplashwrapper = "^1.3"
|
2020-12-02 16:59:48 +01:00
|
|
|
pysanejs = "^1.3"
|
2021-01-08 13:17:48 +01:00
|
|
|
har2tree = "^1.3.2"
|
2021-02-12 06:53:21 +01:00
|
|
|
pylookyloo = "^1.4"
|
2020-09-24 18:46:43 +02:00
|
|
|
dnspython = "^2.0.0"
|
2020-11-06 07:03:18 +01:00
|
|
|
pytaxonomies = "^1.3"
|
2021-02-09 06:49:12 +01:00
|
|
|
pymisp = {version = "^2.4.138", extras = ["url"]}
|
2021-02-17 06:45:52 +01:00
|
|
|
python-magic = {version = "^0.4.21", 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-01-04 12:53:09 +01:00
|
|
|
Pillow = "^8.1.0"
|
2021-01-22 17:00:35 +01:00
|
|
|
lief = "^0.11.0"
|
2021-02-04 19:51:43 +01:00
|
|
|
Flask-Login = "^0.5.0"
|
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-01-25 07:33:46 +01:00
|
|
|
mypy = "^0.800"
|
2021-02-02 06:50:01 +01:00
|
|
|
ipython = "^7.20.0"
|
2020-01-21 17:39:18 +01:00
|
|
|
|
|
|
|
[build-system]
|
2020-10-07 16:48:02 +02:00
|
|
|
requires = ["poetry_core>=1.0", "setuptools"]
|
2020-10-03 21:19:43 +02:00
|
|
|
build-backend = "poetry.core.masonry.api"
|