1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27
|
---
setup.py | 7 +++----
1 file changed, 3 insertions(+), 4 deletions(-)
--- a/setup.py
+++ b/setup.py
@@ -20,7 +20,6 @@ if sys.platform.startswith('win'):
from distutils.command.bdist_msi import bdist_msi as _bdist_msi
from distutils.command.bdist_wininst import bdist_wininst as _bdist_wininst
-
def _find_vcvarsall(version):
vsbase = msvc9compiler.VS_BASE % version
productdir = None
@@ -286,9 +285,9 @@ setup(
maintainer_email='dmitry@prazdnichnov.name',
url='https://github.com/bambocher/pocketsphinx-python',
download_url='https://pypi.org/project/pocketsphinx/#files',
- packages=[ 'pocketsphinx'],
- ext_modules=ext_modules,
- cmdclass=cmdclass,
+ packages=[ ],
+ #ext_modules=ext_modules,
+ #cmdclass=cmdclass,
classifiers=[
'Development Status :: 2 - Pre-Alpha',
'Operating System :: Microsoft :: Windows',
|