-
Notifications
You must be signed in to change notification settings - Fork 36
/
setup.py
28 lines (26 loc) · 1.06 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
#!/usr/bin/env python
from setuptools import setup, find_packages
import os
setup(name='django-authorizenet',
version='2.1',
description='Django and Authorize.NET payment gateway integration',
author='Andrii Kurinnyi',
author_email='[email protected]',
url='http://github.com/zen4ever/django-authorizenet/tree/master',
packages=['authorizenet', 'authorizenet.migrations'],
keywords=['django', 'Authorize.NET', 'payment'],
classifiers=[
'Development Status :: 4 - Beta',
'Programming Language :: Python',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
'Framework :: Django',
'Topic :: Office/Business :: Financial',
],
long_description=open(
os.path.join(os.path.dirname(__file__), 'README.rst'),
).read().strip(),
test_suite='runtests.runtests',
tests_require=['httmock'],
install_requires=['requests', 'django>=1.4', 'django-relatives>=0.2.0'])