File size: 947 Bytes
a926f18 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 |
from setuptools import setup
with open("README.md", "r") as fh:
long_description = fh.read()
setup(
name='vinorm',
version='2.0.7',
description='Python package for text normalization, use for frontend of Text-to-speech Reseach',
long_description=long_description,
long_description_content_type="text/markdown",
url='https://github.com/NoahDrisort/vinorm',
author='AILAB',
author_email='[email protected]',
license='AILAB',
packages=['vinorm'],
include_package_data=True,
install_requires=[],
classifiers=[
'Development Status :: 4 - Beta',
'License :: Free for non-commercial use',
'Natural Language :: Vietnamese',
'Operating System :: POSIX :: Linux',
'Programming Language :: C++',
'Programming Language :: Python :: 3.6',
'Topic :: Scientific/Engineering :: Artificial Intelligence'
],
)
|