-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
aea4a46
commit 6caf5c7
Showing
4 changed files
with
86 additions
and
7 deletions.
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
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 |
---|---|---|
@@ -0,0 +1,31 @@ | ||
[project] | ||
name = "pygitver" | ||
version = "0.0.1" | ||
authors = [ | ||
{ name="Yurii Puchkov", email="[email protected]" }, | ||
] | ||
description = "Manages Git Tag versions and generates ChangeLog" | ||
keywords = ["git tag", "version", "versions", "conventional commit", "semver", "changelog", "changelogs"] | ||
readme = "README.md" | ||
requires-python = ">=3.8" | ||
classifiers = [ | ||
"Development Status :: 5 - Production/Stable", | ||
"Environment :: Console", | ||
"Natural Language :: English", | ||
"Programming Language :: Python :: 3", | ||
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)", | ||
"Operating System :: OS Independent", | ||
] | ||
dependencies = [ | ||
"Jinja2==3.1.2" | ||
] | ||
|
||
[project.urls] | ||
Homepage = "https://github.com/panpuchkov/pygitver" | ||
Issues = "https://github.com/panpuchkov/pygitver/issues" | ||
|
||
[build-system] | ||
requires = ["setuptools", "wheel", "setuptools_scm[toml]>=6.2"] | ||
|
||
[tool.setuptools_scm] | ||
|
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 |
---|---|---|
@@ -0,0 +1,25 @@ | ||
[metadata] | ||
name = "pygitver" | ||
version = "0.0.1" | ||
author="Yurii Puchkov" | ||
author_email="[email protected]" | ||
|
||
description = "Manages Git Tag versions and generates ChangeLog" | ||
long_description = "README.md" | ||
long_description_content_type = text/markdown | ||
url = package url | ||
project_urls = | ||
Bug Tracker = package issues url | ||
classifiers = | ||
"Programming Language :: Python :: 3", | ||
"License :: OSI Approved :: GPLv3 License", | ||
"Operating System :: OS Independent", | ||
|
||
[options] | ||
package_dir = | ||
= src | ||
packages = find: | ||
python_requires = >=3.7 | ||
|
||
[options.packages.find] | ||
where = src |
This file was deleted.
Oops, something went wrong.