You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
15 lines
434 B
15 lines
434 B
4 years ago
|
try:
|
||
|
from setuptools import setup #enables develop
|
||
|
except ImportError:
|
||
|
from distutils.core import setup
|
||
|
|
||
|
setup(name='python_speech_features',
|
||
|
version='0.6',
|
||
|
description='Python Speech Feature extraction',
|
||
|
author='James Lyons',
|
||
|
author_email='james.lyons0@gmail.com',
|
||
|
license='MIT',
|
||
|
url='https://github.com/jameslyons/python_speech_features',
|
||
|
packages=['python_speech_features'],
|
||
|
)
|