-
Notifications
You must be signed in to change notification settings - Fork 24
/
setup.py
30 lines (25 loc) · 858 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
28
29
30
import sys
from setuptools import setup
required = ['requests']
if sys.version_info[:2] < (2,6):
required.append('simplejson')
setup(
name = 'simplegist',
packages = ['simplegist'],
version = '1.0.1',
install_requires=required,
description = 'Python wrapper for Gist ',
long_description=open('README.rst').read(),
author = 'Varun Malhotra',
author_email = 'varun2902@gmail.com',
url = 'https://github.com/softvar/simplegist',
download_url = 'https://github.com/softvar/simplegist/tarball/1.0.1',
keywords = ['gist', 'github', 'API'],
license = 'MIT',
classifiers = (
"Programming Language :: Python",
"Programming Language :: Python :: 2.5",
"Programming Language :: Python :: 2.6",
"Programming Language :: Python :: 2.7",
),
)