-
Notifications
You must be signed in to change notification settings - Fork 13
/
setup.py
executable file
·39 lines (36 loc) · 1.35 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 python
import sys
from distutils.core import setup
import os
version = '0.2.12'
setup(
name='git-goggles',
version=version,
description="A series of GIT utilities to streamline working with remote branches and reviewing code. You can think of git-goggles as 'git branch -a' on steroids. Just install and run 'git goggles'",
long_description=open('README.rst', 'r').read(),
author='Nowell Strite',
author_email='[email protected]',
url='http://github.com/nowells/git-goggles/',
packages=['gitgoggles'],
license='MIT',
classifiers=[
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Topic :: Utilities',
'Environment :: Console',
'Natural Language :: English',
'Operating System :: MacOS :: MacOS X',
'Operating System :: POSIX :: Linux',
'Operating System :: Unix',
'Programming Language :: Python',
'Programming Language :: Python :: 2.4',
'Programming Language :: Python :: 2.5',
'Programming Language :: Python :: 2.6',
'Programming Language :: Python :: 2.7',
'Topic :: Software Development :: Version Control',
'Topic :: Utilities',
],
scripts=['bin/git-goggles'],
)