Skip to content

Commit

Permalink
Update setup.py to include utils package
Browse files Browse the repository at this point in the history
  • Loading branch information
dormant-user committed Dec 18, 2022
1 parent fd90882 commit 93dd701
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 3 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[![Pypi-version](https://img.shields.io/pypi/v/changelog-generator)](https://pypi.org/project/changelog-generator)
![Python](https://img.shields.io/badge/python-3.8%20%7C%203.9%20%7C%203.10%20%7C%203.11-blue)
![Python](https://img.shields.io/badge/python-3.7%20%7C%203.8%20%7C%203.9%20%7C%203.10%20%7C%203.11-blue)

[![pages-build-deployment](https://github.com/thevickypedia/changelog-generator/actions/workflows/pages/pages-build-deployment/badge.svg)](https://github.com/thevickypedia/changelog-generator/actions/workflows/pages/pages-build-deployment)
[![pypi](https://github.com/thevickypedia/changelog-generator/actions/workflows/python-publish.yml/badge.svg)](https://github.com/thevickypedia/changelog-generator/actions/workflows/python-publish.yml)
Expand Down
2 changes: 1 addition & 1 deletion setup.cfg
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[metadata]
name = changelog-generator
version = attr: version
description = 'Python module to, generate CHANGELOG from git commit history.',
description = 'Python module to, generate well formatted commit notes from git commit history.',
long_description = file: README.md
long_description_content_type = text/markdown; charset=UTF-8
url = https://github.com/thevickypedia/changelog-generator
Expand Down
4 changes: 3 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ def read(name: str) -> str:
setup(
name='changelog-generator',
version='.'.join(str(c) for c in version_info),
description='Python module to, generate CHANGELOG from git commit history.',
description='Python module to, generate well formatted commit notes from git commit history.',
long_description=read('README.md'),
url='https://github.com/thevickypedia/changelog-generator',
author='Vignesh Sivanandha Rao',
Expand All @@ -43,6 +43,8 @@ def read(name: str) -> str:
keywords='changelog, commits, automate',
packages=['.changemaker'],
install_requires=['click'],
include_package_data=True,
python_requires=">=3.7",
entry_points={
'console_scripts': [
'changelog = changemaker.generator:main'
Expand Down

0 comments on commit 93dd701

Please sign in to comment.