forked from mozilla/DeepSpeech
-
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request mozilla#980 from mozilla/wheel_metadata
Update metadata for Python and Node.JS packages
- Loading branch information
Showing
3 changed files
with
21 additions
and
10 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,10 +3,7 @@ | |
"version": "0.0.2", | ||
"description": "A client binary to access DeepSpeech trained models.", | ||
"license": "MPL-2.0", | ||
"author": { | ||
"name": "Chris Lord", | ||
"email": "[email protected]" | ||
}, | ||
"author": "Mozilla", | ||
"main": "client.js", | ||
"dependencies": { | ||
"argparse": "1.0.9", | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -44,15 +44,29 @@ class BuildExtFirst(build): | |
|
||
setup(name = project_name, | ||
description = 'A library for running inference on a DeepSpeech model', | ||
author = 'Chris Lord', | ||
author_email='[email protected]', | ||
author = 'Mozilla', | ||
version = '0.0.2', | ||
package_dir = {'deepspeech': 'python'}, | ||
packages = [ 'deepspeech' ], | ||
cmdclass = { 'build': BuildExtFirst }, | ||
packages = ['deepspeech'], | ||
cmdclass = {'build': BuildExtFirst}, | ||
license = 'MPL-2.0', | ||
url = 'https://github.com/mozilla/DeepSpeech', | ||
ext_modules = [model, utils], | ||
entry_points={'console_scripts':['deepspeech = deepspeech.client:main']}, | ||
install_requires = ['numpy', 'scipy==0.19.1'], | ||
include_package_data = True) | ||
include_package_data = True, | ||
classifiers = [ | ||
'Development Status :: 3 - Alpha', | ||
'Environment :: Console', | ||
'Intended Audience :: Developers', | ||
'Intended Audience :: Science/Research', | ||
'License :: OSI Approved :: Mozilla Public License 2.0 (MPL 2.0)', | ||
'Programming Language :: Python :: 2.7', | ||
'Programming Language :: Python :: 3.4', | ||
'Programming Language :: Python :: 3.5', | ||
'Programming Language :: Python :: 3.6', | ||
'Topic :: Multimedia :: Sound/Audio :: Speech', | ||
'Topic :: Scientific/Engineering :: Human Machine Interfaces', | ||
'Topic :: Scientific/Engineering', | ||
'Topic :: Utilities', | ||
]) |