From dc119880b9583ec8e20d062be893c9a920bbf73d Mon Sep 17 00:00:00 2001 From: Reuben Morais Date: Tue, 31 Mar 2020 14:02:26 +0200 Subject: [PATCH] Sync training package version with main version --- setup.py | 11 +++++++++-- 1 file changed, 9 insertions(+), 2 deletions(-) diff --git a/setup.py b/setup.py index f99a642c..64ff75dd 100644 --- a/setup.py +++ b/setup.py @@ -1,9 +1,16 @@ -from setuptools import setup, find_packages +from pathlib import Path + +from setuptools import find_packages, setup + def main(): + version_file = Path(__file__).parent / 'VERSION' + with open(version_file) as fin: + version = fin.read().strip() + setup( name='deepspeech_training', - version='0.0.1', + version=version, description='Training code for mozilla DeepSpeech', url='https://github.com/mozilla/DeepSpeech', author='Mozilla',