Skip to content

Commit

Permalink
Merge pull request mozilla#980 from mozilla/wheel_metadata
Browse files Browse the repository at this point in the history
Update metadata for Python and Node.JS packages
  • Loading branch information
reuben authored Nov 21, 2017
2 parents 995f713 + d12201c commit bed5b59
Show file tree
Hide file tree
Showing 3 changed files with 21 additions and 10 deletions.
2 changes: 1 addition & 1 deletion native_client/javascript/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"version" : "0.0.2",
"description" : "DeepSpeech NodeJS bindings",
"main" : "./index",
"author" : "Mozilla DeepSpeech <deepspeech>",
"author" : "Mozilla",
"repository" : {
"type" : "git",
"url" : "git://github.com/mozilla/DeepSpeech.git"
Expand Down
5 changes: 1 addition & 4 deletions native_client/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -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",
Expand Down
24 changes: 19 additions & 5 deletions native_client/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -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',
])

0 comments on commit bed5b59

Please sign in to comment.