-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
27 lines (25 loc) · 869 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
from distutils.core import setup
with open("README") as f:
readme = f.read()
setup(
name="gizz",
version="0.5",
description="Command-line interface to GitHub.",
long_description=readme,
author="Ross Lagerwall",
author_email="[email protected]",
url="https://github.com/rosslagerwall/gizz",
license="GNU General Public License Version 3+",
packages=["gizz"],
scripts=["bin/gizz"],
classifiers=[
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"License :: OSI Approved :: GNU General Public License (GPL)",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 3.2",
"Programming Language :: Python :: 3.3",
"Topic :: Software Development :: Version Control"
],
)