From 31a4d0bd268ec8266ccaab5fe7a2a467d903b806 Mon Sep 17 00:00:00 2001 From: Oliver Yeun <13575302+oyeun@users.noreply.github.com> Date: Sat, 26 Sep 2020 09:27:26 -0700 Subject: [PATCH] remove MANIFEST.in, use setuptools --- MANIFEST.in | 2 -- setup.py | 6 +++--- 2 files changed, 3 insertions(+), 5 deletions(-) delete mode 100644 MANIFEST.in diff --git a/MANIFEST.in b/MANIFEST.in deleted file mode 100644 index b66e749..0000000 --- a/MANIFEST.in +++ /dev/null @@ -1,2 +0,0 @@ -include pySHSpeex/soundhound-speex/include/speex/*.h -include pySHSpeex/soundhound-speex/src/*.h diff --git a/setup.py b/setup.py index cd8a868..d5220ee 100644 --- a/setup.py +++ b/setup.py @@ -1,7 +1,7 @@ ############################################################################## # Copyright 2015 SoundHound, Incorporated. All rights reserved. ############################################################################## -from distutils.core import setup, Extension +from setuptools import setup, Extension SPEEX_SRC_DIR = "pySHSpeex/soundhound-speex" SOURCES = "cb_search.c exc_10_32_table.c exc_8_128_table.c filters.c gain_table.c hexc_table.c high_lsp_tables.c " \ @@ -18,7 +18,7 @@ setup(name='Houndify', packages=['houndify'], ext_modules=ext_modules, - version='2.0', + version='2.0.1', license='MIT', description='Houndify libraries and SoundHound speex encoder', long_description=open('README.md').read(), @@ -26,7 +26,7 @@ author='Soundhound Inc.', maintainer='Oliver Yeun', url='https://github.com/oyeun/houndify', - download_url='https://github.com/oyeun/houndify/archive/2.0.tar.gz', + download_url='https://github.com/oyeun/houndify/archive/2.0.1.tar.gz', keywords=['houndify'], classifiers=[ 'Programming Language :: Python :: 3'