Sync training package version with main version
This commit is contained in:
parent
c738d55012
commit
dc119880b9
11
setup.py
11
setup.py
@ -1,9 +1,16 @@
|
|||||||
from setuptools import setup, find_packages
|
from pathlib import Path
|
||||||
|
|
||||||
|
from setuptools import find_packages, setup
|
||||||
|
|
||||||
|
|
||||||
def main():
|
def main():
|
||||||
|
version_file = Path(__file__).parent / 'VERSION'
|
||||||
|
with open(version_file) as fin:
|
||||||
|
version = fin.read().strip()
|
||||||
|
|
||||||
setup(
|
setup(
|
||||||
name='deepspeech_training',
|
name='deepspeech_training',
|
||||||
version='0.0.1',
|
version=version,
|
||||||
description='Training code for mozilla DeepSpeech',
|
description='Training code for mozilla DeepSpeech',
|
||||||
url='https://github.com/mozilla/DeepSpeech',
|
url='https://github.com/mozilla/DeepSpeech',
|
||||||
author='Mozilla',
|
author='Mozilla',
|
||||||
|
Loading…
x
Reference in New Issue
Block a user