-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathsetup.py
executable file
·39 lines (36 loc) · 1.09 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
32
33
34
35
36
37
38
39
#!/usr/bin/env python3
from setuptools import find_packages, 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 ',
],
entry_points={
'console_scripts': [
'git-summary=git_summary:main',
],
},
install_requires=[
'colorama>=0.3.7',
'gitpython>=2.1.3',
'sh>=1.10.0',
],
keywords='command-line git tool',
package_dir={'': 'src'},
packages=find_packages(where='src'),
project_urls={
'Source': 'https://github.com/gimbo/git-summary',
},
python_requires='>=3.6, <4',
)