Skip to content

Commit

Permalink
Update PyProject (squash)
Browse files Browse the repository at this point in the history
  • Loading branch information
ppfeister committed May 8, 2024
1 parent 69aff55 commit 8393ee4
Show file tree
Hide file tree
Showing 3 changed files with 32 additions and 2 deletions.
3 changes: 3 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,9 @@ __pycache__/
# Pip
src/

# Pip / PyProject Devel & Installation
*.egg-info/

# Jupyter Notebook
.ipynb_checkpoints
*.ipynb
Expand Down
27 changes: 25 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -11,13 +11,36 @@ Repository = "https://github.com/sherlock-project/sherlock.git"
Issues = "https://github.com/sherlock-project/sherlock/issues"

[project]
name = "sherlock"
name = "Sherlock"
authors = [
{ name = "Sherlock Project (Siddharth Dushantha)" }
]
maintainers = [
{ name = "Siddharth Dushantha :: https://github.com/sdushantha" },
{ name = "Matheus Felipe :: https://github.com/matheusfelipeog" },
{ name = "Sondreal :: https://github.com/sondreal" },
{ name = "Paul Pfeister :: https://github.com/ppfeister" }
]
description = "Hunt down social media accounts by username across social networks"
readme = "README.md"
license = {file = "LICENSE"}
dynamic = ["dependencies", "version"]
keywords = [ "osint", "reconnaissance", "information gathering" ]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"Intended Audience :: Information Technology",
"License :: OSI Approved :: MIT License",
"Natural Language :: English",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Topic :: Communications",
"Topic :: Security"
]

[tool.setuptools.dynamic]
dependencies = {file = ["requirements.txt"]}
dependencies = { file = [ "requirements.txt" ] }
version = { attr = "sherlock.__version__" }

[tool.setuptools]
package-dir = {"" = "sherlock"}
4 changes: 4 additions & 0 deletions setup.cfg
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
[metadata]
name = Sherlock
author = Sherlock Project
url = http://sherlock-project.github.io/

0 comments on commit 8393ee4

Please sign in to comment.