lookyloo/pyproject.toml

56 lines
1.5 KiB
TOML
Raw Normal View History

2020-01-21 17:39:18 +01:00
[tool.poetry]
name = "lookyloo"
2020-02-06 15:49:28 +01:00
version = "1.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/CIRCL/lookyloo"
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.py"
start = "bin/start.py"
run_backend = "bin/run_backend.py"
async_scrape = "bin/async_scrape.py"
shutdown = "bin/shutdown.py"
stop = "bin/stop.py"
[tool.poetry.dependencies]
python = "^3.7"
2020-01-21 17:39:18 +01:00
scrapysplashwrapper = {git = "https://github.com/viper-framework/ScrapySplashWrapper.git"}
har2tree = {git = "https://github.com/viper-framework/har2tree.git"}
pysanejs = {git = "https://github.com/CIRCL/PySaneJS.git"}
requests = "^2.22.0"
flask = "^1.1.1"
gunicorn = {version = "^20.0.4"}
2020-01-21 17:39:18 +01:00
cchardet = "^2.1.5"
redis = "^3.3.11"
pylookyloo = {path = "client"}
beautifulsoup4 = "^4.8.2"
bootstrap-flask = "^1.2.0"
cloudscraper = "^1.2.20"
2020-03-16 13:51:21 +01:00
defang = "^0.5.3"
vt-py = "^0.5.2"
2020-04-01 17:44:06 +02:00
Flask-HTTPAuth = "^3.3.0"
2020-01-21 17:39:18 +01:00
[tool.poetry.dev-dependencies]
mypy = "^0.761"
2020-03-16 13:51:21 +01:00
ipython = "^7.13.0"
2020-01-21 17:39:18 +01:00
[build-system]
requires = ["poetry>=0.12"]
build-backend = "poetry.masonry.api"