sherlock/pyproject.toml

66 lines
1.8 KiB
TOML
Raw Normal View History

[build-system]
2024-05-16 04:00:05 -04:00
requires = [ "poetry-core>=1.6.0", "poetry-dynamic-versioning>1.0.0,<2.0.0" ]
2024-05-15 23:34:37 -04:00
build-backend = "poetry_dynamic_versioning.backend"
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-15 23:34:37 -04:00
[tool.poetry-dynamic-versioning]
enable = false
metadata = false
strict = true
2024-05-15 23:34:37 -04:00
vcs = "git"
# Matched tags:
# v0.0.0 followed by optional -rc0 (release candidate) OR -b0 (public beta)
pattern = "^v(?P<base>\\d+(?:\\.\\d+){2})(?:-(?P<stage>(?:rc|b)\\d+?))??$"
[tool.poetry-dynamic-versioning.substitution]
folders = [ { path = "sherlock" } ]
2024-05-15 23:34:37 -04:00
[tool.poetry]
2024-05-13 00:19:07 -04:00
name = "sherlock-project"
version = "0.14.4"
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 = [
2024-05-15 23:34:37 -04:00
"Siddharth Dushantha"
2024-05-11 00:27:48 -04:00
]
maintainers = [
2024-05-15 23:34:37 -04:00
"Paul Pfeister",
"Matheus Felipe",
"Sondre Karlsen Dyrnes"
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 = "http://sherlock-project.github.io/"
repository = "https://github.com/sherlock-project/sherlock.git"
2024-05-15 23:34:37 -04:00
[tool.poetry.urls]
"Bug Reporting" = "https://github.com/sherlock-project/sherlock/issues"
"Contributors" = "https://github.com/sherlock-project/sherlock/graphs/contributors"
2024-05-15 23:34:37 -04:00
[tool.poetry.dependencies]
python = "^3.8"
2024-05-16 02:51:06 -04:00
certifi = ">2019.6.16"
2024-05-15 23:34:37 -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"
pandas = ">1.0.0"
openpyxl = "^3.0.10"
exrex = "^0.11.0"
2024-05-15 23:34:37 -04:00
[tool.poetry.scripts]
sherlock = 'sherlock.sherlock:main'