Skip to content

Commit

Permalink
Added change log for version 0.1.3
Browse files Browse the repository at this point in the history
  • Loading branch information
spookylukey committed Jan 3, 2014
1 parent 9118b9d commit 649e8d5
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 2 deletions.
2 changes: 1 addition & 1 deletion MANIFEST.in
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
include setup.py README.md CONTRIBUTORS MANIFEST.in
include setup.py README.md CONTRIBUTORS MANIFEST.in CHANGES.rst
recursive-include paypal *.html
global-exclude *~
9 changes: 8 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
@@ -1,9 +1,15 @@
#!/usr/bin/env python

import os.path
from setuptools import setup, find_packages

import paypal

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'

setup(
name='django-paypal',
version=".".join(map(str, paypal.__version__)),
Expand All @@ -15,7 +21,8 @@
install_requires=[
'Django>=1.4'
],
description = 'A pluggable Django application for integrating PayPal Payments Standard or Payments Pro',
description = DESCRIPTION,
long_description = DESCRIPTION + "\n\n" + read("CHANGES.rst"),
packages=find_packages(),
include_package_data=True,
classifiers=[
Expand Down

0 comments on commit 649e8d5

Please sign in to comment.