From ac4b322a87ee4728cf1c47a622e6136b852ce207 Mon Sep 17 00:00:00 2001 From: John-Mark Gurney Date: Sun, 3 Sep 2017 16:18:45 -0700 Subject: [PATCH] add install runtime requirements --- setup.py | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/setup.py b/setup.py index a81b1ef..08933ee 100644 --- a/setup.py +++ b/setup.py @@ -1,4 +1,7 @@ -from distutils.core import setup +try: + from setuptools import setup +except ImportError: + from distutils.core import setup setup(name='yadenon', version='2.0.0', @@ -7,6 +10,11 @@ setup(name='yadenon', author_email='jmg@funkthat.com', url='https://github.com/jmgurney/yadenon', py_modules=['yadenon'], + install_requires=[ + 'mock', + 'twisted', + 'pyserial', + ], classifiers=[ 'Development Status :: 5 - Production/Stable', 'Intended Audience :: Developers',