File: setup.py

package info (click to toggle)
speechpy-fast 2.4-4
  • links: PTS, VCS
  • area: main
  • in suites: sid, trixie
  • size: 144 kB
  • sloc: python: 205; makefile: 4
file content (17 lines) | stat: -rwxr-xr-x 668 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
from setuptools import setup, find_packages

setup(name='speechpy-fast',
      version='2.4',
      description='A fork of the python package for extracting speech features.',
      author='Amirsina Torfi, Matthew Scholefield',
      author_email='matthew331199@gmail.com',
      url='https://github.com/matthewscholefield/speechpy',
      download_url = 'https://github.com/matthewscholefield/speechpy/archive/2.4.zip',
      packages=find_packages(exclude=('tests', 'docs')),
      include_package_data=True,
      install_requires=[
          'scipy',
          'numpy',
          'backports.functools_lru_cache;python_version<"3.2"'
      ],
      zip_safe=False)