diff options
author | Andrej Rode <andrej.rode@ettus.com> | 2017-03-27 18:03:52 -0700 |
---|---|---|
committer | Martin Braun <martin.braun@ettus.com> | 2017-12-22 15:03:45 -0800 |
commit | 6a12add1560545438e1bebc05efbafd05aace4f9 (patch) | |
tree | c94dbbbd4da0c7ef41fc8849f174875a13f0b511 /mpm/python/setup.py.in | |
parent | ba4fad345d7489b40a7dab83842ac21d13c4f460 (diff) | |
download | uhd-6a12add1560545438e1bebc05efbafd05aace4f9.tar.gz uhd-6a12add1560545438e1bebc05efbafd05aace4f9.tar.bz2 uhd-6a12add1560545438e1bebc05efbafd05aace4f9.zip |
mpm: mpm reorganization
Diffstat (limited to 'mpm/python/setup.py.in')
-rwxr-xr-x | mpm/python/setup.py.in | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/mpm/python/setup.py.in b/mpm/python/setup.py.in index 2a63d14aa..e09262d44 100755 --- a/mpm/python/setup.py.in +++ b/mpm/python/setup.py.in @@ -40,5 +40,9 @@ setup(name='usrp_mpm', zip_safe=False, packages=['usrp_mpm', 'usrp_mpm.periph_manager', 'usrp_mpm.dboard_manager'], install_requires=[ - 'numpy' - ]) + 'mprpc', + 'systemd-python', + 'pyroute2', + 'pyudev' + ], + tests_require=['pytest', 'pylint']) |