forked from johnboxall/django-paypal
-
Notifications
You must be signed in to change notification settings - Fork 206
/
setup.py
executable file
·37 lines (32 loc) · 1.09 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
29
30
31
32
33
34
35
36
37
#!/usr/bin/env python
import os.path
from setuptools import setup, find_packages
import paypal
def read(*rnames):
return open(os.path.join(os.path.dirname(__file__), *rnames)).read()
DESCRIPTION = 'A pluggable Django application for integrating PayPal Payments Standard or Payments Pro'
URL = 'https://github.com/spookylukey/django-paypal'
setup(
name='django-paypal',
version=".".join(map(str, paypal.__version__)),
author='John Boxall',
author_email='john@handimobility.ca',
maintainer="Luke Plant",
maintainer_email="L.Plant.98@cantab.net",
url=URL,
install_requires=[
'Django>=1.4'
],
description = DESCRIPTION,
long_description = "%s\n\nDocs: %s\n\n%s" % (DESCRIPTION, URL, read("CHANGES.rst")),
packages=find_packages(),
include_package_data=True,
classifiers=[
"Framework :: Django",
"Intended Audience :: Developers",
"Intended Audience :: System Administrators",
"Operating System :: OS Independent",
"Topic :: Software Development",
"Programming Language :: Python :: 2.7",
],
)