Skip to content

Commit

Permalink
Switch to Poetry
Browse files Browse the repository at this point in the history
  • Loading branch information
ppfeister committed May 8, 2024
1 parent 8393ee4 commit cb22902
Show file tree
Hide file tree
Showing 2 changed files with 24 additions and 29 deletions.
49 changes: 24 additions & 25 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,30 +1,28 @@
[build-system]
requires = ["setuptools >= 61.0"]
build-backend = "setuptools.build_meta"
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"

[project.scripts]
sherlock = "sherlock:main"
[tool.poetry.dependencies]
python = "^3.12"

[project.urls]
Homepage = "http://sherlock-project.github.io/"
Repository = "https://github.com/sherlock-project/sherlock.git"
Issues = "https://github.com/sherlock-project/sherlock/issues"

[project]
[tool.poetry]
name = "Sherlock"
authors = [
{ name = "Sherlock Project (Siddharth Dushantha)" }
]
description = "Hunt down social media accounts by username across social networks"
version = "0.0.1"
homepage = "http://sherlock-project.github.io/"
repository = "https://github.com/sherlock-project/sherlock.git"
authors = [ "Sherlock Project" ]
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" }
"Siddharth Dushantha",
"Matheus Felipe",
"Sondreal",
"Paul Pfeister"
]
description = "Hunt down social media accounts by username across social networks"
readme = "README.md"
license = {file = "LICENSE"}
dynamic = ["dependencies", "version"]
packages = [
{ include = "sherlock" }
]
license = "MIT"
keywords = [ "osint", "reconnaissance", "information gathering" ]
classifiers = [
"Development Status :: 5 - Production/Stable",
Expand All @@ -38,9 +36,10 @@ classifiers = [
"Topic :: Security"
]

[tool.setuptools.dynamic]
dependencies = { file = [ "requirements.txt" ] }
version = { attr = "sherlock.__version__" }
[tools.poetry.urls]
Homepage = "http://sherlock-project.github.io/"
Repository = "https://github.com/sherlock-project/sherlock.git"
Issues = "https://github.com/sherlock-project/sherlock/issues"

[tool.setuptools]
package-dir = {"" = "sherlock"}
[tool.poetry.scripts]
sherlock = "sherlock:main"
4 changes: 0 additions & 4 deletions setup.cfg

This file was deleted.

0 comments on commit cb22902

Please sign in to comment.