Skip to content

Commit

Permalink
pep8
Browse files Browse the repository at this point in the history
  • Loading branch information
hannosch committed Feb 26, 2013
1 parent 768cc84 commit fac5ab5
Showing 1 changed file with 10 additions and 9 deletions.
19 changes: 10 additions & 9 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,12 +6,13 @@

setup(
name='z3c.recipe.compattest',
version = version,
version=version,
author='Grok Contributors',
author_email='grok-dev@zope.org',
description='Buildout recipe to create testrunners for testing compatibility with other packages',
description='Buildout recipe to create testrunners for testing '
'compatibility with other packages',
url='http://pypi.python.org/pypi/z3c.recipe.compattest',
long_description= (
long_description=(
'.. contents::'
+ '\n\n'
+ open('CHANGES.txt').read()
Expand Down Expand Up @@ -41,14 +42,14 @@
# zope.dottedname is just used as a dummy package to demonstrate things
# with, it's not actually imported
extras_require=dict(test=[
'zope.dottedname',
'zope.testing',
'manuel',
'six',
]),
'zope.dottedname',
'zope.testing',
'manuel',
'six',
]),
entry_points = {
'zc.buildout': ['default = z3c.recipe.compattest.recipe:Recipe'],
},
},
include_package_data = True,
zip_safe = False,
)

0 comments on commit fac5ab5

Please sign in to comment.