simon-r / dr14_t.meter

Compute the DR14 of a given audio file according to the procedure described by the Pleasurize Music Foundation
http://dr14tmeter.sourceforge.net
GNU General Public License v3.0
125 stars 33 forks source link

setup.py missing install_requires entry for numpy #27

Open dnwe opened 8 years ago

dnwe commented 8 years ago

something like

    install_requires=[
        'numpy>=1.8'
    ],

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

sustefil commented 7 months ago

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

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

now I can install successfully with pip3 install .