sherlock/pyproject.toml

60 lines
1.7 KiB
TOML
Raw Normal View History

[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-05-18 00:57:37 +00:00
[tool.poetry-version-plugin]
source = "init"
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 = [
"Siddharth Dushantha <siddharth.dushantha@gmail.com>"
2024-05-11 04:27:48 +00:00
]
maintainers = [
"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-05-13 04:19:07 +00:00
readme = "docs/pyproj/README.md"
2024-05-16 04:16:46 +00:00
packages = [ { include = "sherlock"} ]
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/"
repository = "https://github.com/sherlock-project/sherlock"
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-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]
sherlock = 'sherlock.sherlock:main'