Skip to content

Commit

Permalink
Add dynamic versionin support (disabled)
Browse files Browse the repository at this point in the history
  • Loading branch information
ppfeister committed May 16, 2024
1 parent 6b09955 commit 07227e4
Showing 1 changed file with 14 additions and 5 deletions.
19 changes: 14 additions & 5 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -3,12 +3,20 @@ requires = [ "poetry-core>=1.8.0", "poetry-dynamic-versioning>1.0.0,<2.0.0" ]
build-backend = "poetry_dynamic_versioning.backend"

[tool.poetry-dynamic-versioning]
enable = true
enable = false
metadata = false
strict = true
vcs = "git"
# Matched tags:
# v0.0.0 followed by optional -rc0 (release candidate) OR -b0 (public beta)
pattern = "^v(?P<base>\\d+(?:\\.\\d+){2})(?:-(?P<stage>(?:rc|b)\\d+?))??$"

[tool.poetry-dynamic-versioning.substitution]
folders = [ { path = "sherlock" } ]

[tool.poetry]
name = "sherlock-project"
version = "0.0.0"
version = "0.14.4"
description = "Hunt down social media accounts by username across social networks"
license = "MIT"
authors = [
Expand All @@ -32,12 +40,13 @@ classifiers = [
"Programming Language :: Python :: 3",
"Topic :: Security"
]
homepage = "http://sherlock-project.github.io/"
repository = "https://github.com/sherlock-project/sherlock.git"


[tool.poetry.urls]
Homepage = "http://sherlock-project.github.io/"
Repository = "https://github.com/sherlock-project/sherlock.git"
Issues = "https://github.com/sherlock-project/sherlock/issues"
"Bug Reporting" = "https://github.com/sherlock-project/sherlock/issues"
"Contributors" = "https://github.com/sherlock-project/sherlock/graphs/contributors"

[tool.poetry.dependencies]
python = "^3.8"
Expand Down

0 comments on commit 07227e4

Please sign in to comment.