forked from gimbo/git-summary
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
executable file
·35 lines (33 loc) · 1005 Bytes
/
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
32
33
34
35
#!/usr/bin/env python3
from distutils.core import setup
setup(
name='git-summary',
version='1.0',
description='Summarise a bunch of git repositories in some folder',
author='Andy Gimblett',
author_email='[email protected]',
classifiers=[
'Development Status :: 5 - Production/Stable',
'Environment :: Console',
'Intended Audience :: Developers',
'Intended Audience :: System Administrators',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3 :: Only',
'Topic :: Software Development :: Version Control :: Git',
'Topic :: Utilities ',
],
project_urls={
'Source': 'https://github.com/gimbo/git-summary',
},
keywords='command-line git tool',
install_requires=[
'colorama>=0.3.7',
'gitpython>=2.1.3',
'sh>=1.10.0',
],
entry_points={
'console_scripts': [
'git-summary=git_summary:main',
],
},
)