Skip to content

Commit a157469

Browse files
committed
chore: added release folders to gitignore and added desc at spip
1 parent f549e80 commit a157469

File tree

2 files changed

+12
-1
lines changed

2 files changed

+12
-1
lines changed

.gitignore

+2
Original file line numberDiff line numberDiff line change
@@ -8,3 +8,5 @@ htmlcov/
88
.pytest_cache/
99
venv/
1010
*.egg-info/
11+
build/
12+
dist/

setup.py

+10-1
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,17 @@
11
from setuptools import setup
22

3+
with open("README.md", 'r') as fi:
4+
long_desc = fi.read()
5+
36
setup( # pragma: no cover
47
name='commit-helper',
5-
version='3.0.0',
8+
description="A python program that helps you write commits following commit conventions", # nopep8
9+
url='https://github.com/andre-filho/commit-helper',
10+
long_description=long_desc,
11+
long_description_content_type='text/markdown',
12+
author='Andre de Sousa Costa Filho',
13+
author_email='[email protected]',
14+
version='3.0.1',
615
packages=['commit_helper'],
716
entry_points={
817
'console_scripts': [

0 commit comments

Comments
 (0)