Prepare PyProject
This commit is contained in:
committed by
Siddharth Dushantha
parent
79f5f18a69
commit
1698928bd3
@@ -14,6 +14,9 @@ __pycache__/
|
||||
# Pip
|
||||
src/
|
||||
|
||||
# Pip / PyProject Devel & Installation
|
||||
*.egg-info/
|
||||
|
||||
# Jupyter Notebook
|
||||
.ipynb_checkpoints
|
||||
*.ipynb
|
||||
|
||||
+25
-2
@@ -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"}
|
||||
|
||||
Reference in New Issue
Block a user