Skip to content
This repository has been archived by the owner on Jun 10, 2018. It is now read-only.

Commit

Permalink
Updating some of the packaging, bumping version to 1.2.0.
Browse files Browse the repository at this point in the history
  • Loading branch information
Greg Taylor committed May 18, 2012
1 parent 33deda6 commit 77294d6
Show file tree
Hide file tree
Showing 3 changed files with 34 additions and 28 deletions.
2 changes: 1 addition & 1 deletion MANIFEST.in
@@ -1,4 +1,4 @@
include README.md
include README.rst
include LICENSE
include AUTHORS
recursive-include paypal *.py
Expand Down
2 changes: 1 addition & 1 deletion paypal/__init__.py
Expand Up @@ -4,4 +4,4 @@
from paypal.exceptions import PayPalError, PayPalConfigError, PayPalAPIResponseError
import paypal.countries

VERSION = '1.0.3'
VERSION = '1.2.0'
58 changes: 32 additions & 26 deletions setup.py
Expand Up @@ -12,32 +12,38 @@
Payment (Guest), and PayPal Express checkouts."""

CLASSIFIERS = [
'Development Status :: 5 - Production/Stable',
'Intended Audience :: Developers',
'License :: OSI Approved :: Apache Software License',
'Natural Language :: English',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 3',
'Topic :: Software Development :: Libraries :: Python Modules'
]
'Development Status :: 5 - Production/Stable',
'Intended Audience :: Developers',
'License :: OSI Approved :: Apache Software License',
'Natural Language :: English',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Programming Language :: Python :: 2',
'Topic :: Software Development :: Libraries :: Python Modules'
]

KEYWORDS = 'paypal nvp'
required = [
'requests',
]

packages = [
'paypal',
]

setup(name = 'paypal',
version = VERSION,
description = 'PayPal API implementation in Python.',
long_description = LONG_DESCRIPTION,
author = 'Pat Collins',
author_email = 'pat@burned.com',
maintainer = 'Gregory Taylor',
maintainer_email = 'gtaylor@duointeractive.com',
url = 'http://github.com/duointeractive/paypal-python/',
download_url = 'http://pypi.python.org/pypi/paypal/',
packages = ['paypal'],
platforms = ['Platform Independent'],
classifiers = CLASSIFIERS,
keywords = KEYWORDS,
use_2to3 = True
)
version=VERSION,
description='PayPal API implementation in Python.',
long_description=LONG_DESCRIPTION,
author= 'Pat Collins',
author_email='pat@burned.com',
maintainer='Gregory Taylor',
maintainer_email='gtaylor@gc-taylor.com',
install_requires=required,
url='http://github.com/duointeractive/paypal-python/',
download_url='http://pypi.python.org/pypi/paypal/',
packages=packages,
platforms=['Platform Independent'],
license='Apache Software License',
classifiers=CLASSIFIERS,
keywords='paypal nvp',
)

0 comments on commit 77294d6

Please sign in to comment.