-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
executable file
·33 lines (30 loc) · 999 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
from setuptools import setup, find_packages
import django_clickbank
setup(
name = "django-clickbank",
version = django_clickbank.__version__,
packages = find_packages(),
author = "Chris Modjeska",
author_email = "[email protected]",
description = "A pluggable application for receiving data from ClickBank's Instant Payment Notifications",
license = "MIT",
keywords = "django clickbank ipn",
url = "https://github.com/sureiya/django-clickbank/",
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"
],
long_description= """
==============
django-paypal
==============
django-paypal is a pluggable application for recieving ClickBank's Instant Payment
Notifications. For more info please visit the github page at
https://github.com/sureiya/django-clickbank
""",
)