Skip to content

Commit

Permalink
Pep8
Browse files Browse the repository at this point in the history
  • Loading branch information
Timo Stollenwerk committed Feb 4, 2013
1 parent bdf01d9 commit 9c7e7d0
Showing 1 changed file with 29 additions and 26 deletions.
55 changes: 29 additions & 26 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,31 +2,34 @@

version = '1.0b3'

setup(name='plone.formwidget.querystring',
version=version,
description="A widget for composing a Query string/search.",
long_description=open("README.rst").read() + "\n" +
open("CHANGES.rst").read(),
classifiers=[
long_description = open("README.rst").read() + "\n" + \
open("CHANGES.rst").read()

setup(
name='plone.formwidget.querystring',
version=version,
description="A widget for composing a Query string/search.",
long_description=long_description,
classifiers=[
"Framework :: Plone",
"Programming Language :: Python",
],
keywords='',
author='Plone Foundation',
author_email='plone-developers@lists.sourceforge.net',
url='https://github.com/plone/plone.formwidget.querystring',
license='GPL',
packages=find_packages(exclude=['ez_setup']),
namespace_packages=['plone', 'plone.formwidget'],
include_package_data=True,
zip_safe=False,
install_requires=[
'setuptools',
'plone.app.querystring',
],
entry_points="""
# -*- Entry points: -*-
[z3c.autoinclude.plugin]
target = plone
""",
)
],
keywords='',
author='Plone Foundation',
author_email='plone-developers@lists.sourceforge.net',
url='https://github.com/plone/plone.formwidget.querystring',
license='GPL',
packages=find_packages(exclude=['ez_setup']),
namespace_packages=['plone', 'plone.formwidget'],
include_package_data=True,
zip_safe=False,
install_requires=[
'setuptools',
'plone.app.querystring',
],
entry_points="""
# -*- Entry points: -*-
[z3c.autoinclude.plugin]
target = plone
""",
)

0 comments on commit 9c7e7d0

Please sign in to comment.