-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathsetup.py
31 lines (30 loc) · 1.03 KB
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
from setuptools import setup
from coauthors import __version__
setup(name='coauthors',
version=__version__,
description="Add coauthors to your last git commit message.",
long_description=open('README.md').read(),
classifiers=[
'Development Status :: 4 - Beta',
'Environment :: Console',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Topic :: Utilities'
],
keywords='',
author=u'Quique Porta',
author_email='[email protected]',
url='https://github.com/quiqueporta/coauthors',
download_url='https://github.com/quiqueporta/coauthors/releases',
license='GPLv3',
packages=['coauthors'],
include_package_data=True,
zip_safe=False,
install_requires=['gitpython'],
entry_points={
'console_scripts': [
'coauthors = coauthors.coauthors:main'
]
})