forked from cuker/merchant-gateways
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
executable file
·34 lines (31 loc) · 1.1 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
from setuptools import setup, find_packages
if __name__ == '__main__':
import sys, os
if sys.argv.count('--xml'):
sys.argv.remove('--xml')
os.environ['XML_OUTPUT'] = 'True'
setup(
name = "merchant-gateways", # TODO merchant-gateways ?
version = "0.0.1",
author = "Cuker Interactive",
author_email = "[email protected]",
url = "http://github.com/cuker/merchant-gateways/",
packages = find_packages('lib'),
package_dir = {'':'lib'},
license = "MIT License",
keywords = "django creditcard merchant authorization purchase",
description = "Unifying the diversity of gateways into a common interface",
install_requires=[
'lxml', # TODO what else?
#python-money
],
classifiers = [
"Intended Audience :: Developers", # TODO do these!
"License :: OSI Approved :: MIT License",
'Operating System :: OS Independent',
'Programming Language :: Python',
'Topic :: Software Development :: Testing',
],
test_suite='tests.testrunner.runtests',
include_package_data = True,
)