2024-03-02 21:21:32 +00:00
|
|
|
[build-system]
|
2024-05-18 00:57:37 +00:00
|
|
|
requires = [ "poetry-core>=1.2.0" ]
|
|
|
|
build-backend = "poetry.core.masonry.api"
|
2024-05-16 08:00:05 +00:00
|
|
|
# poetry-core 1.8 not available in .fc39. Can upgrade to 1.8.0 at .fc39 EOL
|
2024-03-02 21:21:32 +00:00
|
|
|
|
2024-05-18 00:57:37 +00:00
|
|
|
[tool.poetry-version-plugin]
|
|
|
|
source = "init"
|
2024-03-02 21:21:32 +00:00
|
|
|
|
2024-05-16 03:34:37 +00:00
|
|
|
[tool.poetry]
|
2024-05-13 04:19:07 +00:00
|
|
|
name = "sherlock-project"
|
2024-05-18 06:22:18 +00:00
|
|
|
# single source of truth for version is __init__.py
|
|
|
|
version = "0"
|
2024-05-16 03:34:37 +00:00
|
|
|
description = "Hunt down social media accounts by username across social networks"
|
|
|
|
license = "MIT"
|
2024-05-11 04:27:48 +00:00
|
|
|
authors = [
|
2024-05-18 18:29:33 +00:00
|
|
|
"Siddharth Dushantha <siddharth.dushantha@gmail.com>"
|
2024-05-11 04:27:48 +00:00
|
|
|
]
|
|
|
|
maintainers = [
|
2024-05-18 05:01:37 +00:00
|
|
|
"Paul Pfeister <code@pfeister.dev>",
|
|
|
|
"Matheus Felipe <matheusfelipeog@protonmail.com>",
|
|
|
|
"Sondre Karlsen Dyrnes <sondre@villdyr.no>"
|
2024-05-11 04:27:48 +00:00
|
|
|
]
|
2024-06-24 20:40:03 +00:00
|
|
|
readme = "docs/pyproject/README.md"
|
|
|
|
packages = [ { include = "sherlock_project"} ]
|
2024-05-11 04:27:48 +00: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"
|
|
|
|
]
|
2024-06-24 20:26:07 +00:00
|
|
|
homepage = "https://sherlockproject.xyz/"
|
2024-05-18 04:35:24 +00:00
|
|
|
repository = "https://github.com/sherlock-project/sherlock"
|
2024-03-02 21:21:32 +00:00
|
|
|
|
|
|
|
|
2024-05-16 03:34:37 +00:00
|
|
|
[tool.poetry.urls]
|
2024-05-18 21:28:50 +00:00
|
|
|
"Bug Tracker" = "https://github.com/sherlock-project/sherlock/issues"
|
2024-05-16 03:34:37 +00:00
|
|
|
|
|
|
|
[tool.poetry.dependencies]
|
|
|
|
python = "^3.8"
|
2024-05-17 04:19:08 +00:00
|
|
|
certifi = ">=2019.6.16"
|
2024-05-18 21:28:50 +00: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 21:41:01 +00:00
|
|
|
# pandas can likely be bumped up to ^2.0.0 after fc39 EOL
|
|
|
|
pandas = ">=1.0.0,<3.0.0"
|
2024-05-18 21:28:50 +00:00
|
|
|
openpyxl = "^3.0.10"
|
2024-05-11 20:52:55 +00:00
|
|
|
|
2024-07-01 02:49:16 +00:00
|
|
|
[tool.poetry.extras]
|
|
|
|
tor = ["torrequest"]
|
|
|
|
|
2024-05-20 08:44:52 +00:00
|
|
|
[tool.poetry.group.dev.dependencies]
|
|
|
|
jsonschema = "^4.0.0"
|
|
|
|
|
2024-05-16 03:34:37 +00:00
|
|
|
[tool.poetry.scripts]
|
2024-06-24 20:40:03 +00:00
|
|
|
sherlock = 'sherlock_project.sherlock:main'
|