forked from seveas/git-spindle
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
19 lines (18 loc) · 669 Bytes
/
setup.py
File metadata and controls
19 lines (18 loc) · 669 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
from distutils.core import setup
setup(name='hub',
version="1.14",
description='Github integration for git',
author='Dennis Kaarsemaker',
author_email='dennis@kaarsemaker.net',
url='http://github.com/seveas/git-hub',
scripts=['git-hub'],
classifiers=[
"Intended Audience :: Developers",
"Topic :: Software Development",
"Environment :: Console",
"License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)",
"Topic :: Software Development",
"Topic :: Software Development :: Version Control"
],
install_requires=["github3.py>=0.7.0", "whelk>=1.2", "docopt>=0.5.0"],
)