https://github.com/tyiannak/pyAudioAnalysis
Raw File
Tip revision: ae00ebd446d497dbbb654c40a71810e7fdf2cc1b authored by Theodoros Giannakopoulos on 22 October 2023, 09:33:23 UTC
Merge pull request #391 from frankieeder/frankieeder/requirements
Tip revision: ae00ebd
setup.py
import os
from setuptools import setup

def read(fname):
    try:
        with open(os.path.join(os.path.dirname(__file__), fname)) as fh:
            return fh.read()
    except IOError:
        return ''

requirements = read('requirements.txt').splitlines()

setup(name='pyAudioAnalysis',
      version='0.3.14',
      description='Python Audio Analysis Library: Feature Extraction, Classification, Segmentation and Applications',
      url='https://github.com/tyiannak/pyAudioAnalysis',
      author='Theodoros Giannakopoulos',
      author_email='tyiannak@gmail.com',
      license='Apache License, Version 2.0',
      packages=['pyAudioAnalysis'],
      package_data={
        'pyAudioAnalysis': ['data/models/*']
      },
      zip_safe=False,
      install_requires=requirements,
      )
back to top