Commit 4903e67c authored by Hanno Schlichting's avatar Hanno Schlichting

Tiny cleanup of setup.py.

parent ddf159c5
...@@ -15,13 +15,11 @@ ...@@ -15,13 +15,11 @@
import os import os
from setuptools import setup, find_packages from setuptools import setup, find_packages
additional_install_requires = [] 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()
README = _read_file('README.rst') README = _read_file('README.rst')
...@@ -113,8 +111,7 @@ setup( ...@@ -113,8 +111,7 @@ setup(
'zope.testing', 'zope.testing',
'zope.traversing', 'zope.traversing',
'zope.viewlet', 'zope.viewlet',
] + additional_install_requires, ],
include_package_data=True, include_package_data=True,
zip_safe=False, zip_safe=False,
entry_points={ entry_points={
......
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