-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
28 lines (25 loc) · 1.11 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
"""
"""
from setuptools import setup, find_packages
setup(name = "Products.Paypal2SalesforceLead",
version = "1.5",
description = "Paypal provides a service called Instant Payment Notification (IPN) which can notify a URL when a payment is made. Paypal2SalesforceLead is a very simple Product for Plone which sets up a listener for IPN, and adds a new Lead to a Salesforce.com account using a Salesforce web-to-lead form whenever a new payment is made. See https://www.paypal.com/us/cgi-bin/webscr?cmd=p/xcl/rec/ipn-intro-outside for more background on Paypal IPN.",
author = "David Glick",
author_email = "david@glicksoftware.com",
url = "http://www.glicksoftware.com",
install_requires=[
'setuptools',
'python-dateutil==1.5'
# -*- Extra requirements: -*-
],
namespace_packages=['Products', ],
packages=find_packages(exclude=['ez_setup']),
classifiers=[
"Framework :: Plone",
"Programming Language :: Python",
"Framework :: Zope2",
],
license="GPL2",
include_package_data = True,
zip_safe=False
)