Skip to content
Snippets Groups Projects
Commit d4caf47b authored by ulif's avatar ulif
Browse files

Declare `setuptools` dependency.

We are going to use entry_points and will need `setuptools` for that.
parent 502b7190
No related branches found
No related tags found
No related merge requests found
......@@ -28,6 +28,10 @@ class PyTest(TestCommand):
def read(fname):
return open(os.path.join(os.path.dirname(__file__), fname)).read()
install_requires = [
'setuptools',
]
tests_require = [
'pytest >= 2.0.3',
'pytest-xdist',
......@@ -75,7 +79,7 @@ setup(
],
include_package_data=True,
zip_safe=False,
install_requires=[],
install_requires=install_requires,
tests_require=tests_require,
extras_require=dict(
tests=tests_require,
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment