forked from zen4ever/django-authorizenet
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
26 lines (24 loc) · 923 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
#!/usr/bin/env python
from distutils.core import setup
import os
setup(name='django-authorizenet',
version='1.0',
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(),
)