Browse Source

add install runtime requirements

main
John-Mark Gurney 7 years ago
parent
commit
ac4b322a87
1 changed files with 9 additions and 1 deletions
  1. +9
    -1
      setup.py

+ 9
- 1
setup.py View File

@@ -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',


Loading…
Cancel
Save