forked from open-pay/openpay-python
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
49 lines (41 loc) · 1.31 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
48
49
from openpay.version import VERSION
import os
import sys
try:
from setuptools import setup
except ImportError:
from distutils.core import setup
try:
from distutils.command.build_py import build_py_2to3 as build_py
except ImportError:
from distutils.command.build_py import build_py
path, script = os.path.split(sys.argv[0])
os.chdir(os.path.abspath(path))
requests = 'requests >= 2.1.0'
if sys.version_info < (2, 6):
requests += ', < 2.1.0'
install_requires = [requests, "future==0.15.2"]
# Don't import openpay module here, since deps may not be installed
sys.path.insert(0, os.path.join(os.path.dirname(__file__), 'openpay'))
# Get simplejson if we don't already have json
if sys.version_info < (3, 0):
try:
import json
except ImportError:
install_requires.append('simplejson')
install_requires = [
'requests',
]
setup(name='openpay',
cmdclass={'build_py': build_py},
version=VERSION,
description='Openpay python bindings',
author='Openpay',
author_email='[email protected]',
url='https://www.openpay.mx/',
tests_require=['mock'],
packages=['openpay', 'openpay.test'],
package_data={'openpay': ['data/ca-certificates.crt', '../VERSION']},
install_requires=install_requires,
test_suite='openpay.test.all',
)