|
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'
|
|
],
|
|
)
|
|
|