Commit 33d8fa4f authored by Hanno Schlichting's avatar Hanno Schlichting

Indent setup.py

parent efce6cf6
...@@ -22,6 +22,8 @@ if sys.platform[:3].lower() == "win": ...@@ -22,6 +22,8 @@ if sys.platform[:3].lower() == "win":
additional_install_requires += ['nt_svcutils'] additional_install_requires += ['nt_svcutils']
here = os.path.abspath(os.path.dirname(__file__)) here = os.path.abspath(os.path.dirname(__file__))
def _read_file(filename): def _read_file(filename):
with open(os.path.join(here, filename)) as f: with open(os.path.join(here, filename)) as f:
return f.read() return f.read()
...@@ -29,7 +31,8 @@ def _read_file(filename): ...@@ -29,7 +31,8 @@ def _read_file(filename):
README = _read_file('README.rst') README = _read_file('README.rst')
CHANGES = _read_file('CHANGES.rst') CHANGES = _read_file('CHANGES.rst')
setup(name='Zope2', setup(
name='Zope2',
version='4.0a1.dev0', version='4.0a1.dev0',
url='http://zope2.zope.org', url='http://zope2.zope.org',
license='ZPL 2.1', license='ZPL 2.1',
...@@ -52,83 +55,83 @@ setup(name='Zope2', ...@@ -52,83 +55,83 @@ setup(name='Zope2',
namespace_packages=['Products', 'Shared', 'Shared.DC'], namespace_packages=['Products', 'Shared', 'Shared.DC'],
package_dir={'': 'src'}, package_dir={'': 'src'},
install_requires=[ install_requires=[
'AccessControl>=2.13.2', 'AccessControl>=2.13.2',
'Acquisition', 'Acquisition',
'BTrees', 'BTrees',
'DateTime', 'DateTime',
'DocumentTemplate', 'DocumentTemplate',
'ExtensionClass', 'ExtensionClass',
'Missing', 'Missing',
'MultiMapping', 'MultiMapping',
'Persistence', 'Persistence',
'Products.OFSP >= 2.13.2', 'Products.OFSP >= 2.13.2',
'Products.SiteErrorLog', 'Products.SiteErrorLog',
'Products.ZCatalog', 'Products.ZCatalog',
'Products.ZCTextIndex', 'Products.ZCTextIndex',
'Record', 'Record',
'RestrictedPython', 'RestrictedPython',
'ZConfig >= 2.9.2', 'ZConfig >= 2.9.2',
'ZODB', 'ZODB',
'ZopeUndo', 'ZopeUndo',
'docutils', 'docutils',
'five.globalrequest', 'five.globalrequest',
'initgroups', 'initgroups',
'pytz', 'pytz',
'setuptools', 'setuptools',
'tempstorage', 'tempstorage',
'transaction', 'transaction',
'zdaemon', 'zdaemon',
'zExceptions', 'zExceptions',
'zLOG', 'zLOG',
'zope.browser', 'zope.browser',
'zope.browsermenu', 'zope.browsermenu',
'zope.browserpage >= 4.0', 'zope.browserpage >= 4.0',
'zope.browserresource >= 3.11', 'zope.browserresource >= 3.11',
'zope.component', 'zope.component',
'zope.configuration', 'zope.configuration',
'zope.container', 'zope.container',
'zope.contentprovider', 'zope.contentprovider',
'zope.contenttype', 'zope.contenttype',
'zope.deferredimport', 'zope.deferredimport',
'zope.event', 'zope.event',
'zope.exceptions', 'zope.exceptions',
'zope.i18n [zcml]', 'zope.i18n [zcml]',
'zope.i18nmessageid', 'zope.i18nmessageid',
'zope.interface >= 3.8', 'zope.interface >= 3.8',
'zope.lifecycleevent', 'zope.lifecycleevent',
'zope.location', 'zope.location',
'zope.pagetemplate >= 4.0.2', 'zope.pagetemplate >= 4.0.2',
'zope.processlifetime', 'zope.processlifetime',
'zope.proxy', 'zope.proxy',
'zope.ptresource', 'zope.ptresource',
'zope.publisher', 'zope.publisher',
'zope.schema', 'zope.schema',
'zope.security', 'zope.security',
'zope.sendmail', 'zope.sendmail',
'zope.sequencesort', 'zope.sequencesort',
'zope.site', 'zope.site',
'zope.size', 'zope.size',
'zope.structuredtext', 'zope.structuredtext',
'zope.tal', 'zope.tal',
'zope.tales >= 3.5.0', 'zope.tales >= 3.5.0',
'zope.testbrowser', 'zope.testbrowser',
'zope.testing', 'zope.testing',
'zope.traversing', 'zope.traversing',
'zope.viewlet', 'zope.viewlet',
] + additional_install_requires, ] + additional_install_requires,
include_package_data=True, include_package_data=True,
zip_safe=False, zip_safe=False,
entry_points={ entry_points={
'paste.app_factory': [ 'paste.app_factory': [
'main=Zope2.Startup.run:make_wsgi_app', 'main=Zope2.Startup.run:make_wsgi_app',
], ],
'console_scripts': [ 'console_scripts': [
'mkzopeinstance=Zope2.utilities.mkzopeinstance:main', 'mkzopeinstance=Zope2.utilities.mkzopeinstance:main',
'runzope=Zope2.Startup.run:run', 'runzope=Zope2.Startup.run:run',
'zopectl=Zope2.Startup.zopectl:run', 'zopectl=Zope2.Startup.zopectl:run',
'zpasswd=Zope2.utilities.zpasswd:main', 'zpasswd=Zope2.utilities.zpasswd:main',
'addzope2user=Zope2.utilities.adduser:main', 'addzope2user=Zope2.utilities.adduser:main',
], ],
}, },
) )
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment