mirror of
https://github.com/soxoj/maigret.git
synced 2026-05-06 14:08:59 +00:00
5d502eaef6
* Add site protection tracking system, fix broken site checks (Instagram, StackOverflow, LeetCode, Boosty, LiveLib), preserve unicode in data.json * Update poetry.lock by running poetry lock Agent-Logs-Url: https://github.com/soxoj/maigret/sessions/14333f41-67d5-4e28-a782-9730b31fc667 Co-authored-by: soxoj <31013580+soxoj@users.noreply.github.com> --------- Co-authored-by: copilot-swe-agent[bot] <198982749+Copilot@users.noreply.github.com>
98 lines
2.5 KiB
TOML
98 lines
2.5 KiB
TOML
[build-system]
|
|
requires = ["poetry-core"]
|
|
build-backend = "poetry.core.masonry.api"
|
|
|
|
[tool.poetry]
|
|
name = "maigret"
|
|
version = "0.5.0"
|
|
description = "🕵️♂️ Collect a dossier on a person by username from thousands of sites."
|
|
authors = ["Soxoj <soxoj@protonmail.com>"]
|
|
readme = "README.md"
|
|
license = "MIT License"
|
|
homepage = "https://pypi.org/project/maigret"
|
|
documentation = "https://maigret.readthedocs.io"
|
|
repository = "https://github.com/soxoj/maigret"
|
|
classifiers = [
|
|
"Development Status :: 5 - Production/Stable",
|
|
"Programming Language :: Python :: 3",
|
|
"Intended Audience :: Information Technology",
|
|
"Operating System :: OS Independent",
|
|
"License :: OSI Approved :: MIT License",
|
|
"Natural Language :: English"
|
|
]
|
|
|
|
[tool.poetry.urls]
|
|
"Bug Tracker" = "https://github.com/soxoj/maigret/issues"
|
|
|
|
[tool.poetry.dependencies]
|
|
# poetry install
|
|
# Install only production dependencies:
|
|
# poetry install --without dev
|
|
# Install with dev dependencies:
|
|
# poetry install --with dev
|
|
python = "^3.10"
|
|
aiodns = ">=3,<5"
|
|
aiohttp = "^3.12.14"
|
|
aiohttp-socks = ">=0.10.1,<0.12.0"
|
|
arabic-reshaper = "^3.0.0"
|
|
async-timeout = "^5.0.1"
|
|
attrs = ">=25.3,<27.0"
|
|
certifi = ">=2025.6.15,<2027.0.0"
|
|
chardet = ">=5,<8"
|
|
colorama = "^0.4.6"
|
|
future = "^1.0.0"
|
|
future-annotations= "^1.0.0"
|
|
html5lib = "^1.1"
|
|
idna = "^3.4"
|
|
Jinja2 = "^3.1.6"
|
|
lxml = ">=5.3,<7.0"
|
|
MarkupSafe = "^3.0.2"
|
|
mock = "^5.1.0"
|
|
multidict = "^6.6.3"
|
|
pycountry = ">=24.6.1,<27.0.0"
|
|
PyPDF2 = "^3.0.1"
|
|
PySocks = "^1.7.1"
|
|
python-bidi = "^0.6.3"
|
|
requests = "^2.32.4"
|
|
requests-futures = "^1.0.2"
|
|
requests-toolbelt = "^1.0.0"
|
|
six = "^1.17.0"
|
|
socid-extractor = "^0.0.27"
|
|
soupsieve = "^2.6"
|
|
stem = "^1.8.1"
|
|
torrequest = "^0.1.0"
|
|
alive_progress = "^3.2.0"
|
|
typing-extensions = "^4.14.1"
|
|
webencodings = "^0.5.1"
|
|
xhtml2pdf = "^0.2.11"
|
|
XMind = "^1.2.0"
|
|
yarl = "^1.20.1"
|
|
networkx = "^2.6.3"
|
|
pyvis = "^0.3.2"
|
|
reportlab = "^4.4.3"
|
|
cloudscraper = "^1.2.71"
|
|
flask = {extras = ["async"], version = "^3.1.1"}
|
|
asgiref = "^3.9.1"
|
|
platformdirs = "^4.3.8"
|
|
curl-cffi = ">=0.14,<1.0"
|
|
|
|
|
|
[tool.poetry.group.dev.dependencies]
|
|
# How to add a new dev dependency: poetry add black --group dev
|
|
# Install dev dependencies with: poetry install --with dev
|
|
flake8 = "^7.1.1"
|
|
pytest = ">=8.3.4,<10.0.0"
|
|
pytest-asyncio = "^1.0.0"
|
|
pytest-cov = ">=6,<8"
|
|
pytest-httpserver = "^1.0.0"
|
|
pytest-rerunfailures = ">=15.1,<17.0"
|
|
reportlab = "^4.4.3"
|
|
mypy = "^1.14.1"
|
|
tuna = "^0.5.11"
|
|
coverage = "^7.9.2"
|
|
black = ">=25.1,<27.0"
|
|
|
|
[tool.poetry.scripts]
|
|
# Run with: poetry run maigret <username>
|
|
maigret = "maigret.maigret:run"
|
|
update_sitesmd = "utils.update_site_data:main" |