diff --git a/native_client/javascript/Makefile b/native_client/javascript/Makefile index a630eb74..f164e75e 100644 --- a/native_client/javascript/Makefile +++ b/native_client/javascript/Makefile @@ -13,7 +13,7 @@ endif default: build clean: - rm -f deepspeech_wrap.cxx package.json README.rst + rm -f deepspeech_wrap.cxx package.json rm -rf ./build/ clean-npm-pack: @@ -23,9 +23,6 @@ clean-npm-pack: really-clean: clean clean-npm-pack rm -fr ./lib/ -README.rst: - cp ../../README.rst README.rst - package.json: package.json.in sed \ -e 's/$$(PROJECT_NAME)/$(PROJECT_NAME)/' \ @@ -44,7 +41,7 @@ copy-deps: build node-wrapper: copy-deps build $(NODE_BUILD_TOOL) $(NODE_PLATFORM_TARGET) $(NODE_RUNTIME) $(NODE_ABI_TARGET) $(NODE_DIST_URL) package $(NODE_BUILD_VERBOSE) -npm-pack: clean package.json README.rst index.js +npm-pack: clean package.json index.js npm install node-pre-gyp@0.13.x npm pack $(NODE_BUILD_VERBOSE) diff --git a/native_client/javascript/README.rst b/native_client/javascript/README.rst new file mode 100644 index 00000000..bde1e032 --- /dev/null +++ b/native_client/javascript/README.rst @@ -0,0 +1 @@ +Full project description and documentation on GitHub: `https://github.com/mozilla/DeepSpeech `_ diff --git a/native_client/python/README.rst b/native_client/python/README.rst new file mode 100644 index 00000000..bde1e032 --- /dev/null +++ b/native_client/python/README.rst @@ -0,0 +1 @@ +Full project description and documentation on GitHub: `https://github.com/mozilla/DeepSpeech `_ diff --git a/native_client/python/setup.py b/native_client/python/setup.py index 0f358e4c..b07aa603 100755 --- a/native_client/python/setup.py +++ b/native_client/python/setup.py @@ -68,7 +68,7 @@ def main(): setup(name=project_name, description='A library for running inference on a DeepSpeech model', - long_description=read('../../README.rst'), + long_description=read('README.rst'), long_description_content_type='text/x-rst; charset=UTF-8', author='Mozilla', version=project_version,