simon-r/dr14_t.meter

setup.py missing install_requires entry for numpy

Opened this issue · 1 comments

dnwe commented

something like

    install_requires=[
        'numpy>=1.8'
    ],

should be added (as appropriate), else a setup.py-based install won't work

Actually it seems mutagen is also needed, this worked for me:

    install_requires=[
        'numpy',
        'mutagen',
    ]

now I can install successfully with pip3 install .