mirror of
https://github.com/sherlock-project/sherlock
synced 2024-11-22 03:43:02 +00:00
33bbb4e720
Co-authored-by: Matheus Felipe <matheusfelipeog@gmail.com>
56 lines
1.5 KiB
TOML
56 lines
1.5 KiB
TOML
[build-system]
|
|
requires = [ "poetry-core>=1.2.0" ]
|
|
build-backend = "poetry.core.masonry.api"
|
|
# poetry-core 1.8 not available in .fc39. Can upgrade to 1.8.0 at .fc39 EOL
|
|
|
|
[tool.poetry-version-plugin]
|
|
source = "init"
|
|
|
|
[tool.poetry]
|
|
name = "sherlock-project"
|
|
version = "0" # single source of truth is __version__.py
|
|
description = "Hunt down social media accounts by username across social networks"
|
|
license = "MIT"
|
|
authors = [
|
|
"Siddharth Dushantha"
|
|
]
|
|
maintainers = [
|
|
"Paul Pfeister",
|
|
"Matheus Felipe",
|
|
"Sondre Karlsen Dyrnes"
|
|
]
|
|
readme = "docs/pyproj/README.md"
|
|
packages = [ { include = "sherlock"} ]
|
|
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"
|
|
|
|
|
|
[tool.poetry.urls]
|
|
"Bug Reporting" = "https://github.com/sherlock-project/sherlock/issues"
|
|
"Contributors" = "https://github.com/sherlock-project/sherlock/graphs/contributors"
|
|
|
|
[tool.poetry.dependencies]
|
|
python = "^3.8"
|
|
certifi = ">=2019.6.16"
|
|
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"
|
|
pandas = ">=1.0.0"
|
|
openpyxl = ">=3.0.10"
|
|
exrex = ">=0.11.0"
|
|
|
|
[tool.poetry.scripts]
|
|
sherlock = 'sherlock.sherlock:main'
|