Sync training package version with main version

This commit is contained in:
Reuben Morais 2020-03-31 14:02:26 +02:00
parent c738d55012
commit dc119880b9

View File

@ -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',