-
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #42 from SkwalExe/version
Make PyPI package version dynamic
- Loading branch information
Showing
1 changed file
with
5 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -4,7 +4,6 @@ build-backend = "flit_core.buildapi" | |
|
||
[project] | ||
name = "octologo" | ||
version = "3.0.2" | ||
description = "Simple program that generates a logo for your open source projects." | ||
authors = [{name = "Leopold Koprivnik", email = "[email protected]"}] | ||
readme = "README.md" | ||
|
@@ -19,6 +18,11 @@ dependencies = [ | |
"click-extra>=4.7.2", | ||
"loguru>=0.7.2", | ||
] | ||
dynamic = ["version"] | ||
|
||
[tool.pdm.version] | ||
source = "file" | ||
path = "src/octologo/__init__.py" | ||
|
||
[project.urls] | ||
Home = "https://github.com/SkwalExe/octo-logo" | ||
|