Skip to content

Commit

Permalink
Tiny cleanup of setup.py.
Browse files Browse the repository at this point in the history
  • Loading branch information
hannosch committed Jul 21, 2016
1 parent ddf159c commit 4903e67
Showing 1 changed file with 3 additions and 6 deletions.
9 changes: 3 additions & 6 deletions setup.py
Expand Up @@ -15,13 +15,11 @@
import os
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):
with open(os.path.join(here, filename)) as f:
with open(os.path.join(HERE, filename)) as f:
return f.read()

README = _read_file('README.rst')
Expand Down Expand Up @@ -113,8 +111,7 @@ def _read_file(filename):
'zope.testing',
'zope.traversing',
'zope.viewlet',
] + additional_install_requires,

],
include_package_data=True,
zip_safe=False,
entry_points={
Expand Down

0 comments on commit 4903e67

Please sign in to comment.