feat(gitlab_release): python module to check if a commit message has gitlab references in the footer

#4
This commit is contained in:
2021-08-08 14:50:34 +09:30
parent d2d4ac0afa
commit 11e156619d
4 changed files with 158 additions and 0 deletions

View File

@ -0,0 +1,14 @@
from setuptools import setup
setup(
name='NFC commit footer validation',
version='0.1.0',
py_modules=['main'],
license='MIT',
long_description='this is a long description',
install_requires=['gitpython'],
entry_points = {
'console_scripts': ['commit_footer=cli:main'],
},
)