Commit 4edb7a3a authored by Kai Lautaportti's avatar Kai Lautaportti

Flake8 cleanup

parent 22384aae
......@@ -9,7 +9,8 @@ def read(*rnames):
return open(os.path.join(os.path.dirname(__file__), *rnames)).read()
setup(name=name,
setup(
name=name,
version=version,
description="zc.buildout recipe for compiling and installing source distributions.",
long_description=(
......@@ -41,11 +42,15 @@ setup(name=name,
namespace_packages=['hexagonit', 'hexagonit.recipe'],
include_package_data=True,
zip_safe=False,
install_requires=['zc.buildout', 'setuptools', 'hexagonit.recipe.download'],
install_requires=[
'zc.buildout',
'setuptools',
'hexagonit.recipe.download',
],
extras_require={
'test': ['zope.testing'],
},
tests_require=['zope.testing'],
test_suite='%s.tests.test_suite' % name,
entry_points={'zc.buildout': ['default = %s:Recipe' % name]},
)
)
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