forked from leepa/django-paypal-driver
-
Notifications
You must be signed in to change notification settings - Fork 2
/
setup.py
26 lines (24 loc) · 867 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
import os
from setuptools import setup
README_PATH = os.path.join(os.path.abspath(os.path.dirname(__file__)), 'README')
setup(
name='django-paypal-driver',
version='0.1',
description='Pluggable paypal nvp (Name Value Pair) API implementation for'
' django based web applications.',
long_description=open(README_PATH).read(),
author='Ozgur Vatansever',
author_email='[email protected]',
url='http://code.google.com/p/django-paypal-driver/',
packages=['paypal'],
classifiers=[
'Development Status :: 4 - Beta',
'Environment :: Web Environment',
'Intended Audience :: Developers',
'License :: OSI Approved',
'Operating System :: OS Independent',
'Framework :: Django',
'Programming Language :: Python',
'Programming Language :: Python :: 2.6',
],
)