Skip to content

Commit

Permalink
Changed package layout. Added setuptools script. Added CONTRIBUTORS.
Browse files Browse the repository at this point in the history
  • Loading branch information
David Cramer committed Aug 25, 2009
1 parent 2259700 commit 78c07be
Show file tree
Hide file tree
Showing 52 changed files with 24 additions and 1 deletion.
6 changes: 6 additions & 0 deletions CONTRIBUTORS
@@ -0,0 +1,6 @@
Originally created by John Boxall <john@handimobility.ca>

Contributors
============

David Cramer <dcramer@gmail.com>
2 changes: 2 additions & 0 deletions MANIFEST.in
@@ -0,0 +1,2 @@
include setup.py README.md CONTRIBUTORS MANIFEST.in
global-exclude *~
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
2 changes: 1 addition & 1 deletion standard/ipn/views.py → paypal/standard/ipn/views.py
Expand Up @@ -28,7 +28,7 @@ def ipn(request, item_check_callable=None):
flag = "Invalid form. (%s)" % form.errors

if ipn_obj is None:
ipn_obj = PayPalIPN()
ipn_obj = PayPalIPN()

ipn_obj.initialize(request)

Expand Down
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
15 changes: 15 additions & 0 deletions setup.py
@@ -0,0 +1,15 @@
#!/usr/bin/env python

from setuptools import setup, find_packages

setup(
name='django-paypal',
version='TODO',
author='John Boxall',
author_email='john@handimobility.ca',
url='http://github.com/johnboxall/django-paypal',
install_requires=['django'],
description = 'A pluggable Django application for integrating PayPal Payments Standard or Payments Pro',
packages=find_packages(),
include_package_data=True,
)

0 comments on commit 78c07be

Please sign in to comment.