-
Notifications
You must be signed in to change notification settings - Fork 809
/
setup.py
85 lines (74 loc) · 2.54 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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
# -*- coding:utf-8 -*-
# Author:hankcs
# Date: 2018-03-11 20:54
from os.path import abspath, join, dirname
import sys
from setuptools import find_packages, setup
def browser_open(url='https://nlp.hankcs.com/download.php?file=install'):
try:
import webbrowser
webbrowser.open_new_tab(url)
except:
pass
JPYPE = 'jpype1==0.7.0'
try:
import subprocess
command = 'pip install ' + JPYPE
subprocess.run(
[sys.executable, "-m"] + command.split(" "),
check=True,
)
except:
browser_open()
errors = ['{} 安装失败'.format(JPYPE)]
if sys.version_info >= (3, 9):
errors.append('暂不支持 Python 3.9 及以上版本')
sys.exit(
'''
----------------------------------------
{}。请执行如下命令:
conda install -c conda-forge python=3.8 openjdk {} -y
pip install pyhanlp
详细安装教程:https://nlp.hankcs.com/download.php?file=install
Windows傻瓜安装包:https://nlp.hankcs.com/download.php?file=exe
'''.format(','.join(errors), JPYPE))
if sys.version_info[0] < 3: # In Python3 TypeError: a bytes-like object is required, not 'str'
long_description = 'Python wrapper for HanLP: Han Language Processing'
else:
this_dir = abspath(dirname(__file__))
with open(join(this_dir, 'README.md'), encoding='utf-8') as file:
long_description = file.read()
setup(
name='pyhanlp',
version='0.1.85',
description='Python wrapper for HanLP: Han Language Processing',
long_description=long_description,
long_description_content_type="text/markdown",
url='https://github.com/hankcs/pyhanlp',
author='hankcs',
author_email='[email protected]',
license='Apache License 2.0',
classifiers=[
'Intended Audience :: Developers',
'Natural Language :: Chinese (Simplified)',
'Natural Language :: Chinese (Traditional)',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Topic :: Text Processing',
'Topic :: Text Processing :: Indexing',
'Topic :: Text Processing :: Linguistic'
],
keywords='corpus,machine-learning,NLU,NLP',
packages=find_packages(exclude=['docs', 'tests*']),
include_package_data=True,
install_requires=[JPYPE, 'hanlp-downloader'],
entry_points={
'console_scripts': [
'hanlp=pyhanlp.main:main',
],
},
# python_requires='<3.9',
)