update setup.py and version str
This commit is contained in:
parent
b6efb43990
commit
18709adce8
|
@ -12,6 +12,6 @@
|
|||
# See the License for the specific language governing permissions and
|
||||
# limitations under the License.
|
||||
|
||||
__version__ = "0.2.0-beta"
|
||||
__version__ = "0.2.0-beta.0"
|
||||
|
||||
from parakeet import audio, data, datasets, frontend, models, modules, training, utils
|
||||
|
|
18
setup.py
18
setup.py
|
@ -48,6 +48,8 @@ setup_info = dict(
|
|||
description='Speech synthesis tools and models based on Paddlepaddle',
|
||||
long_description=long_description,
|
||||
license='Apache 2',
|
||||
|
||||
python_requires='>=3.6',
|
||||
install_requires=[
|
||||
'numpy',
|
||||
'nltk',
|
||||
|
@ -68,9 +70,23 @@ setup_info = dict(
|
|||
'g2pM',
|
||||
'yacs',
|
||||
],
|
||||
extras_require={
|
||||
'doc': ["sphinx", "sphinx-rtd-theme", "numpydoc"],
|
||||
},
|
||||
|
||||
# Package info
|
||||
packages=find_packages(exclude=('tests', 'tests.*')),
|
||||
zip_safe=True, )
|
||||
zip_safe=True,
|
||||
|
||||
classifiers = [
|
||||
'Development Status :: 4 - Beta',
|
||||
'Intended Audience :: Developers',
|
||||
'Topic :: Scientific/Engineering :: Artificial Intelligence'
|
||||
'License :: OSI Approved :: Apache2 License',
|
||||
'Programming Language :: Python :: 3.6',
|
||||
'Programming Language :: Python :: 3.7',
|
||||
],
|
||||
|
||||
)
|
||||
|
||||
setup(**setup_info)
|
||||
|
|
Loading…
Reference in New Issue