forked from dcramer/django-paypal
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
28 lines (25 loc) · 826 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
28
#!/usr/bin/env python
from setuptools import setup, find_packages
import paypal
setup(
name='django-paypal',
version=".".join(map(str, paypal.__version__)),
author='John Boxall',
author_email='[email protected]',
maintainer="David Cramer",
maintainer_email="[email protected]",
url='http://github.com/johnboxall/django-paypal',
install_requires=[
'Django>=1.0'
],
description = 'A pluggable Django application for integrating PayPal Payments Standard or Payments Pro',
packages=find_packages(),
include_package_data=True,
classifiers=[
"Framework :: Django",
"Intended Audience :: Developers",
"Intended Audience :: System Administrators",
"Operating System :: OS Independent",
"Topic :: Software Development"
],
)