Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 4 additions & 1 deletion blackbird.py
Original file line number Diff line number Diff line change
Expand Up @@ -160,7 +160,7 @@ def initiate():
config.currentEmail = None


if __name__ == "__main__":
def main():
initiate()
config.console.print(
"""[red]
Expand Down Expand Up @@ -265,3 +265,6 @@ def initiate():
saveToPdf(config.emailFoundAccounts, "email", config)
config.currentEmail = None
config.emailFoundAccounts = None

if __name__ == "__main__":
main()
31 changes: 31 additions & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
[project]
name = "blackbird"
description = "An OSINT tool to search for accounts by username and email in social networks."
authors = [ { name = "p1ngul1n0" } ]
version = "1.0.0"
dynamic = ["dependencies"]
readme = "README.md"
license-files = [ ".gitub/LICENSE", "docs/LICENSE" ]
# No current spacy release supports Python 3.13
# A bit idiosyncratically, since this version restriction is only applied for 3.8.3+,
# pip will resolve to 3.8.2 which fails even worse.
requires-python = "< 3.13"

[project.urls]
"Homepage" = "p1ngul1n0.gitbook.io/blackbird/"

[project.scripts]
blackbird = "blackbird.blackbird:main"

[tool.setuptools.dynamic]
dependencies = {file = ["requirements.txt"]}
[tool.setuptools.package-dir]
"blackbird" = "."
"blackbird.src" = "src"
[tool.setuptools.package-data]
"blackbird.data" = ["*.txt", "*.json"]

[build-system]
requires = ["setuptools"]
build-backend = "setuptools.build_meta"

Binary file modified requirements.txt
Binary file not shown.