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',
......
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