forked from GitYCC/g2pW
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
33 lines (32 loc) · 1 KB
/
setup.py
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
30
31
32
33
import setuptools
setuptools.setup(
name='g2pw',
version='0.0.7',
license='Apache License 2.0',
author='Yi-Chang Chen',
author_email='[email protected]',
description='g2pW',
long_description=open('README.md', encoding="utf-8").read(),
long_description_content_type='text/markdown',
url='https://github.com/GitYCC/g2pW',
packages=setuptools.find_packages(),
python_requires='>=3.6',
include_package_data=True,
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'Intended Audience :: Science/Research',
'License :: OSI Approved :: Apache Software License',
'Operating System :: OS Independent',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
],
install_requires=[
'tqdm',
'transformers'
],
extras_require={
'opencc': ['opencc-python-reimplemented'],
}
)