-
Notifications
You must be signed in to change notification settings - Fork 6
/
setup.py
34 lines (31 loc) · 1.08 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
# coding=utf-8
__author__ = 'PAY.ON'
import sys
if sys.version_info < (3, 4):
install_requires = ['requests >= 2.5.3', 'six >= 1.9.0', 'pyopenssl', 'ndg-httpsclient', 'pyasn1']
else:
install_requires = ['requests >= 2.5.3', 'six >= 1.9.0']
from setuptools import setup
setup(
name='opp',
version='1.3.1',
description='Python wrapper for OPP',
author='PAY.ON',
author_email='[email protected]',
url='https://github.com/OpenPaymentPlatform/python',
license='MIT',
packages=['opp'],
classifiers=[
'Development Status :: 5 - Production/Stable',
'Environment :: Web Environment',
'Intended Audience :: Developers',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Programming Language :: Python :: 3',
'License :: OSI Approved :: MIT License',
'Topic :: Internet :: WWW/HTTP',
'Topic :: Software Development :: Libraries :: Python Modules',
],
install_requires=install_requires,
download_url='https://github.com/OpenPaymentPlatform/python/tarball/1.3.1'
)