-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
35 lines (34 loc) · 1.41 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
34
35
import setuptools
LICENSE = "License :: OSI Approved :: Apache Software License"
VERSION = "0.0.1"
setuptools.setup(
name='cctrans',
version=VERSION,
author="Andrew Wang",
author_email="[email protected]",
description='tools for get chinese cloud translation, using youdao,baidu,google',
license=LICENSE,
install_requires=["six",
"requests",
"importlib_resources"],
package_data={
'cctrans': ['configure.ini'],
},
url='https://github.com/wangchuan2008888/ChineseCloudTranslation',
packages=setuptools.find_packages(),
classifiers=['Topic :: Text Processing :: Linguistic',
'Environment :: Console',
'Intended Audience :: Developers',
'Intended Audience :: Education',
'Development Status :: 5 - Production/Stable',
'Operating System :: OS Independent',
'Programming Language :: Python',
"License :: OSI Approved :: Apache Software License",
'Natural Language :: Chinese (Simplified)',
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.4",
"Programming Language :: Python :: 3.5",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
]
)