forked from mpyatishev/django-paypal-adaptive
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathsetup.py
33 lines (31 loc) · 993 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
29
30
31
32
33
#!/usr/bin/env python
from setuptools import setup, find_packages
import paypaladaptive
setup(
name='django-paypal-adaptive',
version=".".join(map(str, paypaladaptive.__version__)),
author='Greg McGuire',
author_email='[email protected]',
maintainer='Anton Agestam',
maintainer_email="[email protected]",
url='http://github.com/FundedByMe/django-paypal-adaptive',
install_requires=[
'Django>=1.4.3',
'python-dateutil==2.1',
'django-money',
],
extras_require={
'delayed-updates': ['celery>=3.0.12'],
},
description='A pluggable Django application for integrating PayPal '
'Adaptive Payments',
packages=find_packages(),
include_package_data=True,
classifiers=[
"Framework :: Django",
"Intended Audience :: Developers",
"Intended Audience :: System Administrators",
"Operating System :: OS Independent",
"Topic :: Software Development"
],
)