Skip to content

Commit

Permalink
PEP-8
Browse files Browse the repository at this point in the history
  • Loading branch information
Michael Howitz committed May 9, 2017
1 parent fb1e58e commit c327c01
Showing 1 changed file with 18 additions and 16 deletions.
34 changes: 18 additions & 16 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,27 +17,29 @@
author_email='laurence@lrowe.co.uk',
url='http://pypi.python.org/pypi/zope.sqlalchemy',
description="Minimal Zope/SQLAlchemy transaction integration",
long_description=open(os.path.join('src', 'zope', 'sqlalchemy', 'README.txt')).read() + "\n\n" +
open('CHANGES.txt').read(),
long_description=(
open(os.path.join('src', 'zope', 'sqlalchemy', 'README.txt')).read() +
"\n\n" +
open('CHANGES.txt').read()),
license='ZPL 2.1',
keywords='zope zope3 sqlalchemy',
classifiers=[
"Framework :: Zope3",
"Programming Language :: Python",
"Programming Language :: Python :: 2",
"Programming Language :: Python :: 2.7",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.3",
"License :: OSI Approved :: Zope Public License",
"Topic :: Software Development :: Libraries :: Python Modules",
"Framework :: Zope3",
"Programming Language :: Python",
"Programming Language :: Python :: 2",
"Programming Language :: Python :: 2.7",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.3",
"License :: OSI Approved :: Zope Public License",
"Topic :: Software Development :: Libraries :: Python Modules",
],

install_requires=[
'setuptools',
'SQLAlchemy>=0.5.1',
'transaction < 1.5',
'zope.interface>=3.6.0',
],
'setuptools',
'SQLAlchemy>=0.5.1',
'transaction < 1.5',
'zope.interface>=3.6.0',
],
extras_require={'test': tests_require},
tests_require=tests_require,
)
)

0 comments on commit c327c01

Please sign in to comment.