Prepare PyProject

pull/2116/head
Paul Pfeister 7 months ago committed by Siddharth Dushantha
parent 79f5f18a69
commit 1698928bd3

3
.gitignore vendored

@ -14,6 +14,9 @@ __pycache__/
# Pip
src/
# Pip / PyProject Devel & Installation
*.egg-info/
# Jupyter Notebook
.ipynb_checkpoints
*.ipynb

@ -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" }
]
maintainers = [
{ name = "Siddharth Dushantha" },
{ name = "Matheus Felipe" },
{ name = "Sondre Karlsen Dyrnes" },
{ name = "Paul Pfeister" }
]
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"}

@ -0,0 +1,4 @@
[metadata]
name = Sherlock
author = Sherlock Project
url = http://sherlock-project.github.io/
Loading…
Cancel
Save