forked from dcramer/django-paypal
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Changed URL of project to spookylukey repo
- Loading branch information
1 parent
649e8d5
commit 608de88
Showing
1 changed file
with
3 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -9,6 +9,7 @@ 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', | ||
|
@@ -17,12 +18,12 @@ def read(*rnames): | |
author_email='[email protected]', | ||
maintainer="Luke Plant", | ||
maintainer_email="[email protected]", | ||
url='http://github.com/dcramer/django-paypal', | ||
url=URL, | ||
install_requires=[ | ||
'Django>=1.4' | ||
], | ||
description = DESCRIPTION, | ||
long_description = DESCRIPTION + "\n\n" + read("CHANGES.rst"), | ||
long_description = "%s\n\nDocs: %s\n\n%s" % (DESCRIPTION, URL, read("CHANGES.rst")), | ||
packages=find_packages(), | ||
include_package_data=True, | ||
classifiers=[ | ||
|