From d923b23f9d72dc35570b780264d9e8b207742634 Mon Sep 17 00:00:00 2001 From: Pieter Eendebak Date: Thu, 9 Nov 2017 16:03:52 +0100 Subject: [PATCH] use modern setuptools instead of distutils; add requirement to setup.py --- setup.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/setup.py b/setup.py index 428b83a..59c3306 100644 --- a/setup.py +++ b/setup.py @@ -1,5 +1,5 @@ -from distutils.core import setup +from setuptools import setup setup(name='autodepgraph', @@ -9,5 +9,5 @@ author_email='adriaan.rol@gmail.com', packages=['autodepgraph'], ext_package='autodepgraph', - requires=["pytools", "numpy(>=1.12)", "pytest", "pytest.cov", "matplotlib"] + requires=["qcodes", "pytools", "numpy(>=1.12)", "pytest", "pytest.cov", "matplotlib"] )