Skip to content

Commit

Permalink
feat: Add dynamic versioning from git tag (#11)
Browse files Browse the repository at this point in the history
  • Loading branch information
doosuu committed May 22, 2024
1 parent df5339e commit ae52495
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 3 deletions.
2 changes: 1 addition & 1 deletion NOTICE-3RD-PARTY-CONTENT.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
## Python
| Dependency | Version | License |
|:-----------|:-------:|--------:|
|types-requests|2.31.0.20240406|Apache 2.0|
|types-requests|2.32.0.20240521|Apache 2.0|
|urllib3|2.2.1|MIT|
## Workflows
| Dependency | Version | License |
Expand Down
7 changes: 5 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,11 +1,14 @@
[project]
name = "velocitas-lib"
version = "0.1.0"
dynamic = ["version"]
dependencies = [
"requests >= 2.31.0",
"types-requests"
]

[build-system]
requires = ["setuptools>=61.0"]
requires = ["setuptools>=61.0", "setuptools-git-versioning"]
build-backend = "setuptools.build_meta"

[tool.setuptools-git-versioning]
enabled = true

0 comments on commit ae52495

Please sign in to comment.