You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
sherlock/pyproject.toml

65 lines
1.8 KiB

[build-system]
7 months ago
requires = [ "poetry-core>=1.8.0", "poetry-dynamic-versioning>1.0.0,<2.0.0" ]
build-backend = "poetry_dynamic_versioning.backend"
7 months ago
[tool.poetry-dynamic-versioning]
enable = false
metadata = false
strict = true
7 months ago
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" } ]
7 months ago
[tool.poetry]
name = "sherlock-project"
version = "0.14.4"
7 months ago
description = "Hunt down social media accounts by username across social networks"
license = "MIT"
7 months ago
authors = [
7 months ago
"Siddharth Dushantha"
7 months ago
]
maintainers = [
7 months ago
"Paul Pfeister",
"Matheus Felipe",
"Sondre Karlsen Dyrnes"
7 months ago
]
readme = "docs/pyproj/README.md"
packages = [ { include = "sherlock"} ]
7 months ago
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"
7 months ago
[tool.poetry.urls]
"Bug Reporting" = "https://github.com/sherlock-project/sherlock/issues"
"Contributors" = "https://github.com/sherlock-project/sherlock/graphs/contributors"
7 months ago
[tool.poetry.dependencies]
python = "^3.8"
certifi = ">2019.6.16"
7 months ago
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"
7 months ago
[tool.poetry.scripts]
sherlock = 'sherlock.sherlock:main'