forked from voucherifyio/voucherify-python-sdk
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
executable file
·47 lines (43 loc) · 1.7 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
40
41
42
43
44
45
46
47
import sys
import os
from setuptools import setup
sys.path.insert(0, os.path.join(os.path.dirname(__file__), 'voucherify'))
__version__ = '2.0.0'
__pypi_username__ = 'voucherify'
__pypi_packagename__ = 'voucherify'
__github_username__ = 'voucherifyio'
__github_reponame__ = 'voucherify-python-sdk'
long_description = '''
The Voucherify REST SDK provides Python APIs to create, process and manage vouchers.
1. https://github.com/voucherifyio/voucherify-python-sdk/ - README and Samples
2. https://voucherify.readme.io/ - API Reference
'''
setup(
name=__pypi_packagename__,
version=__version__,
author='Voucherify',
author_email='[email protected]',
packages=['voucherify'],
scripts=[],
url='https://github.com/' + __github_username__ + '/' + __github_reponame__,
license='MIT',
description='The Voucherify REST SDK provides Python APIs to create, process and manage vouchers.',
long_description=long_description,
classifiers=[
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'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'
],
install_requires=['requests>=1.0.0', 'six>=1.0.0'],
keywords=['voucherify', 'rest', 'sdk']
)