-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathsetup.py
More file actions
48 lines (46 loc) · 1.58 KB
/
Copy pathsetup.py
File metadata and controls
48 lines (46 loc) · 1.58 KB
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
36
37
38
39
40
41
42
43
44
45
46
47
48
# -*- coding: utf-8 -*-
from setuptools import setup, find_packages
from clause import __version__
with open("README.md", "r") as fh:
long_description = '''
中文语义理解服务 Python SDK
----------------------------
https://github.com/chatopera/py-clause/
'''
setup(
name='clause',
version=__version__,
description='中文语义理解服务 Python SDK',
long_description=long_description,
long_description_content_type="text/markdown",
author='Hai Liang Wang',
author_email='hain@chatopera.com',
url='https://github.com/chatopera/py-clause',
license="Apache Software License",
classifiers=[
'Intended Audience :: Developers',
'License :: OSI Approved :: Apache Software License',
'Operating System :: OS Independent',
'Natural Language :: Chinese (Simplified)',
'Natural Language :: Chinese (Traditional)',
'Programming Language :: Python',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Topic :: Text Processing',
'Topic :: Text Processing :: Indexing',
'Topic :: Text Processing :: Linguistic'],
keywords='chatbot,machine-learning,NLU,NLP',
packages=find_packages(),
install_requires=[
"absl-py>=0.8",
"thrift==0.11.0"
],
package_data={
'clause': [
'**/*.gz',
'**/*.txt',
'**/*.vector',
'LICENSE']})