forked from viagogo/gogokit.py
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
37 lines (35 loc) · 1.28 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
try:
from setuptools import setup
except ImportError:
from distutils.core import setup
import sys, os
sys.path.insert(0, os.path.join(os.path.dirname(__file__), 'gogokit'))
from config import __version__, __pypi_packagename__
setup(
name=__pypi_packagename__,
version= __version__,
author='Viagogo',
author_email='api@viagogo.com',
packages=['gogokit'],
scripts=[],
url='https://github.com/viagogo/gogokit.py',
license=open('LICENSE.txt').read(),
description='GogoKit is a lightweight, viagogo API client library for Python.',
long_description=open('README.md').read(),
install_requires=['requests>=2.7.0', 'uritemplate>=0.6', 'iso8601>=0.1.10', 'six>=1.9.0'],
classifiers=[
'Intended Audience :: Developers',
'Natural Language :: English',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.6',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: Implementation :: PyPy',
'Topic :: Software Development :: Libraries :: Python Modules'
],
keywords=['viagogo', 'rest', 'sdk', 'api']
)