Skip to content

Commit

Permalink
PEP-8
Browse files Browse the repository at this point in the history
  • Loading branch information
Michael Howitz committed Mar 21, 2018
1 parent 0fe6133 commit a9d3ed3
Showing 1 changed file with 43 additions and 45 deletions.
88 changes: 43 additions & 45 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,12 +1,8 @@
import os
from setuptools import setup
from setuptools import find_packages

NAME = 'CMFUid'

here = os.path.abspath(os.path.dirname(__file__))
package = os.path.join(here, 'Products', NAME)


def _read(name):
with open(name) as f:
Expand All @@ -20,11 +16,12 @@ def _read(name):
])


setup(name='Products.%s' % NAME,
version="3.0.dev0",
description='Uid product for the Zope Content Management Framework',
long_description=README,
classifiers=[
setup(
name='Products.%s' % NAME,
version="3.0.dev0",
description='Uid product for the Zope Content Management Framework',
long_description=README,
classifiers=[
"Development Status :: 5 - Production/Stable",
"Framework :: Plone",
"Framework :: Zope :: 4",
Expand All @@ -33,39 +30,40 @@ def _read(name):
"Programming Language :: Python",
"Topic :: Software Development",
"Topic :: Software Development :: Libraries :: Application Frameworks",
],
keywords='web application server zope cmf',
author="Zope Foundation and Contributors",
author_email="zope-cmf@zope.org",
url="https://github.com/zopefoundation/Products.CMFUid",
license="ZPL 2.1",
packages=find_packages(),
include_package_data=True,
namespace_packages=['Products'],
zip_safe=False,
setup_requires=['eggtestinfo',
],
install_requires=[
'Products.BTreeFolder2 >= 4.0.dev0',
'Products.CMFCore >= 2.4.0b3',
'Products.GenericSetup',
'Products.ZCTextIndex >= 4.0.dev0',
'Products.ZCatalog >= 4.0.dev0',
'Products.ZSQLMethods >= 3.0.dev0',
'Zope',
'Products.GenericSetup >= 1.10.0.dev0',
'Products.MailHost >= 4.0.dev0',
'setuptools',
],
tests_require=[
'zope.testing >= 3.7.0',
],
test_loader='zope.testing.testrunner.eggsupport:SkipLayers',
test_suite='Products.%s.tests' % NAME,
entry_points="""
[zope2.initialize]
Products.%s = Products.%s:initialize
[distutils.commands]
ftest = zope.testing.testrunner.eggsupport:ftest
""" % (NAME, NAME),
)
],
keywords='web application server zope cmf',
author="Zope Foundation and Contributors",
author_email="zope-cmf@zope.org",
url="https://github.com/zopefoundation/Products.CMFUid",
license="ZPL 2.1",
packages=find_packages(),
include_package_data=True,
namespace_packages=['Products'],
zip_safe=False,
setup_requires=[
'eggtestinfo',
],
install_requires=[
'Products.BTreeFolder2 >= 4.0.dev0',
'Products.CMFCore >= 2.4.0b3',
'Products.GenericSetup',
'Products.ZCTextIndex >= 4.0.dev0',
'Products.ZCatalog >= 4.0.dev0',
'Products.ZSQLMethods >= 3.0.dev0',
'Zope',
'Products.GenericSetup >= 1.10.0.dev0',
'Products.MailHost >= 4.0.dev0',
'setuptools',
],
tests_require=[
'zope.testing >= 3.7.0',
],
test_loader='zope.testing.testrunner.eggsupport:SkipLayers',
test_suite='Products.%s.tests' % NAME,
entry_points="""
[zope2.initialize]
Products.%s = Products.%s:initialize
[distutils.commands]
ftest = zope.testing.testrunner.eggsupport:ftest
""" % (NAME, NAME),
)

0 comments on commit a9d3ed3

Please sign in to comment.