We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f549e80 commit a157469Copy full SHA for a157469
.gitignore
@@ -8,3 +8,5 @@ htmlcov/
8
.pytest_cache/
9
venv/
10
*.egg-info/
11
+build/
12
+dist/
setup.py
@@ -1,8 +1,17 @@
1
from setuptools import setup
2
3
+with open("README.md", 'r') as fi:
4
+ long_desc = fi.read()
5
+
6
setup( # pragma: no cover
7
name='commit-helper',
- version='3.0.0',
+ description="A python program that helps you write commits following commit conventions", # nopep8
+ url='https://github.com/andre-filho/commit-helper',
+ long_description=long_desc,
+ long_description_content_type='text/markdown',
+ author='Andre de Sousa Costa Filho',
13
+ author_email='[email protected]',
14
+ version='3.0.1',
15
packages=['commit_helper'],
16
entry_points={
17
'console_scripts': [
0 commit comments