Skip to content

Commit

Permalink
Fix install dependencies
Browse files Browse the repository at this point in the history
- Use install_requires instead of requires, otherwise pip ignores it
- pylab is a non-existent package (use matplotlib instead)
- curses is part of the Python standard library (no need to install)
- Add h5py
  • Loading branch information
ludwigschwardt committed Apr 22, 2013
1 parent 9461d10 commit 2080e4f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion setup.py
Expand Up @@ -19,7 +19,7 @@
'Topic :: Scientific/Engineering :: Astronomy',
'Topic :: Software Development :: Libraries :: Python Modules',
],
requires=['katcp', 'pylab','matplotlib','iniparse', 'numpy', 'spead', 'curses', 'construct'],
install_requires=['katcp', 'matplotlib', 'iniparse', 'numpy', 'spead', 'construct', 'h5py'],
provides=['corr'],
package_dir = {'corr':'src'},
packages = ['corr'],
Expand Down

0 comments on commit 2080e4f

Please sign in to comment.