Skip to content

Commit

Permalink
Changed URL of project to spookylukey repo
Browse files Browse the repository at this point in the history
  • Loading branch information
spookylukey committed Jan 3, 2014
1 parent 649e8d5 commit 608de88
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -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',
Expand All @@ -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=[
Expand Down

0 comments on commit 608de88

Please sign in to comment.