sherlock/pyproject.toml

60 lines
1.7 KiB
TOML
Raw Normal View History

[build-system]
2024-05-17 20:57:37 -04:00
requires = [ "poetry-core>=1.2.0" ]
build-backend = "poetry.core.masonry.api"
2024-05-16 04:00:05 -04:00
# poetry-core 1.8 not available in .fc39. Can upgrade to 1.8.0 at .fc39 EOL
2024-05-17 20:57:37 -04:00
[tool.poetry-version-plugin]
source = "init"
2024-05-15 23:34:37 -04:00
[tool.poetry]
2024-05-13 00:19:07 -04:00
name = "sherlock-project"
2024-05-18 02:22:18 -04:00
# single source of truth for version is __init__.py
version = "0"
2024-05-15 23:34:37 -04:00
description = "Hunt down social media accounts by username across social networks"
license = "MIT"
2024-05-11 00:27:48 -04:00
authors = [
"Siddharth Dushantha <siddharth.dushantha@gmail.com>"
2024-05-11 00:27:48 -04:00
]
maintainers = [
"Paul Pfeister <code@pfeister.dev>",
"Matheus Felipe <matheusfelipeog@protonmail.com>",
"Sondre Karlsen Dyrnes <sondre@villdyr.no>"
2024-05-11 00:27:48 -04:00
]
2024-05-13 00:19:07 -04:00
readme = "docs/pyproj/README.md"
2024-05-16 00:16:46 -04:00
packages = [ { include = "sherlock"} ]
2024-05-11 00:27:48 -04:00
keywords = [ "osint", "reconnaissance", "information gathering" ]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"Intended Audience :: Information Technology",
"Natural Language :: English",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Topic :: Security"
]
homepage = "https://sherlock-project.github.io/"
repository = "https://github.com/sherlock-project/sherlock"
2024-05-15 23:34:37 -04:00
[tool.poetry.urls]
2024-05-18 17:28:50 -04:00
"Bug Tracker" = "https://github.com/sherlock-project/sherlock/issues"
2024-05-15 23:34:37 -04:00
[tool.poetry.dependencies]
python = "^3.8"
2024-05-17 00:19:08 -04:00
certifi = ">=2019.6.16"
2024-05-18 17:28:50 -04:00
colorama = "^0.4.1"
PySocks = "^1.7.0"
requests = "^2.22.0"
requests-futures = "^1.0.0"
stem = "^1.8.0"
torrequest = "^0.1.0"
2024-05-18 17:41:01 -04:00
# pandas can likely be bumped up to ^2.0.0 after fc39 EOL
pandas = ">=1.0.0,<3.0.0"
2024-05-18 17:28:50 -04:00
openpyxl = "^3.0.10"
2024-05-20 04:44:52 -04:00
[tool.poetry.group.dev.dependencies]
jsonschema = "^4.0.0"
2024-05-15 23:34:37 -04:00
[tool.poetry.scripts]
sherlock = 'sherlock.sherlock:main'