Skip to content

Commit

Permalink
remove MANIFEST.in, use setuptools
Browse files Browse the repository at this point in the history
  • Loading branch information
oyeun committed Sep 26, 2020
1 parent bc8ec0d commit 31a4d0b
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 5 deletions.
2 changes: 0 additions & 2 deletions MANIFEST.in

This file was deleted.

6 changes: 3 additions & 3 deletions setup.py
Original file line number Diff line number Diff line change
@@ -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 " \
Expand All @@ -18,15 +18,15 @@
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(),
long_description_content_type='text/markdown',
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'
Expand Down

0 comments on commit 31a4d0b

Please sign in to comment.