-
Notifications
You must be signed in to change notification settings - Fork 17
Expand file tree
/
Copy pathsetup.py
More file actions
16 lines (14 loc) · 677 Bytes
/
setup.py
File metadata and controls
16 lines (14 loc) · 677 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#!/usr/bin/env python
from setuptools import setup
setup(name='git rewrite author',
version='1.0',
description='Rewrite author/committer history of a git repository',
author='David Fokkema',
author_email='davidfokkema@icloud.com',
url='https://github.com/davidfokkema/git-rewrite-author',
classifiers=['Intended Audience :: Developers',
'Environment :: Console',
'Programming Language :: Python :: 2.7',
'Topic :: Software Development :: Version Control',
'License :: OSI Approved :: GNU General Public License v3 (GPLv3)'],
scripts=['git-rewrite-author'])