-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
28 lines (23 loc) · 877 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
#!/usr/bin/python
import ez_setup
ez_setup.use_setuptools()
from setuptools import setup
# Tell distutils to put the data_files in platform-specific installation
# locations. See here for an explanation:
# http://groups.google.com/group/comp.lang.python/browse_thread/thread/35ec7b2fed36eaec/2105ee4d9e8042cb
from distutils.command.install import INSTALL_SCHEMES
for scheme in INSTALL_SCHEMES.values():
scheme['data'] = scheme['purelib']
version = __import__('gchecky').version()
setup(name='gchecky',
version=version,
url='http://gchecky.googlecode.com',
author='Evgeniy Tarassov',
author_email='[email protected]',
description='Python wrapper for Google Checkout API Level 2',
license='Apache License 2.0',
install_requires=['iso8601'],
packages=['gchecky', 'gchecky.test'],
data_files=[],
scripts=[],
)