lookyloo/pyproject.toml

61 lines
1.5 KiB
TOML
Raw Normal View History

2020-01-21 17:39:18 +01:00
[tool.poetry]
name = "lookyloo"
2020-07-23 16:10:54 +02:00
version = "1.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"
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_website = "bin.start_website:main"
start = "bin.start:main"
run_backend = "bin.run_backend:main"
async_scrape = "bin.async_scrape:main"
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]
python = "^3.7"
2020-01-21 17:39:18 +01:00
requests = "^2.22.0"
flask = "^1.1.1"
gunicorn = "^20.0.4"
2020-01-21 17:39:18 +01:00
cchardet = "^2.1.5"
redis = "^3.3.11"
beautifulsoup4 = "^4.9.2"
2020-01-21 17:39:18 +01:00
bootstrap-flask = "^1.2.0"
cloudscraper = "^1.2.48"
2020-03-16 13:51:21 +01:00
defang = "^0.5.3"
vt-py = "^0.6.1"
2020-09-08 19:18:03 +02:00
Flask-HTTPAuth = "^4.1.0"
2020-06-09 15:06:35 +02:00
pyeupi = "^1.0"
scrapysplashwrapper = "^1.2.4"
2020-06-10 18:41:03 +02:00
pysanejs = "^1.1"
har2tree = "^1.2.4"
pylookyloo = "^1.2"
2020-09-24 18:46:43 +02:00
dnspython = "^2.0.0"
2020-10-27 00:02:18 +01:00
pytaxonomies = "^1.2"
2020-01-21 17:39:18 +01:00
[tool.poetry.dev-dependencies]
mypy = "^0.790"
2020-03-16 13:51:21 +01:00
ipython = "^7.13.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"]
build-backend = "poetry.core.masonry.api"