Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
sherlock-project
GitHub Repository: sherlock-project/sherlock
Path: blob/master/pyproject.toml
761 views
1
[build-system]
2
requires = [ "poetry-core>=1.2.0" ]
3
build-backend = "poetry.core.masonry.api"
4
# poetry-core 1.8 not available in .fc39. Can upgrade to 1.8.0 at .fc39 EOL
5
6
[tool.poetry-version-plugin]
7
source = "init"
8
9
[tool.poetry]
10
name = "sherlock-project"
11
version = "0.16.0"
12
description = "Hunt down social media accounts by username across social networks"
13
license = "MIT"
14
authors = [
15
"Siddharth Dushantha <[email protected]>"
16
]
17
maintainers = [
18
"Paul Pfeister <[email protected]>",
19
"Matheus Felipe <[email protected]>",
20
"Sondre Karlsen Dyrnes <[email protected]>"
21
]
22
readme = "docs/pyproject/README.md"
23
packages = [ { include = "sherlock_project"} ]
24
keywords = [ "osint", "reconnaissance", "information gathering" ]
25
classifiers = [
26
"Development Status :: 5 - Production/Stable",
27
"Intended Audience :: Developers",
28
"Intended Audience :: Information Technology",
29
"Natural Language :: English",
30
"Operating System :: OS Independent",
31
"Programming Language :: Python :: 3",
32
"Programming Language :: Python :: 3.10",
33
"Programming Language :: Python :: 3.11",
34
"Programming Language :: Python :: 3.12",
35
"Programming Language :: Python :: 3.13",
36
"Topic :: Security"
37
]
38
homepage = "https://sherlockproject.xyz/"
39
repository = "https://github.com/sherlock-project/sherlock"
40
41
42
[tool.poetry.urls]
43
"Bug Tracker" = "https://github.com/sherlock-project/sherlock/issues"
44
45
[tool.poetry.dependencies]
46
python = "^3.9"
47
certifi = ">=2019.6.16"
48
colorama = "^0.4.1"
49
PySocks = "^1.7.0"
50
requests = "^2.22.0"
51
requests-futures = "^1.0.0"
52
stem = "^1.8.0"
53
pandas = "^2.2.1"
54
openpyxl = "^3.0.10"
55
tomli = "^2.2.1"
56
57
[tool.poetry.group.dev.dependencies]
58
jsonschema = "^4.0.0"
59
rstr = "^3.2.2"
60
pytest = "^8.4.2"
61
pytest-xdist = "^3.8.0"
62
63
64
[tool.poetry.group.ci.dependencies]
65
defusedxml = "^0.7.1"
66
67
[tool.poetry.scripts]
68
sherlock = 'sherlock_project.sherlock:main'
69
70