-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
51 lines (50 loc) · 1.63 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
from __future__ import print_function
from setuptools import setup, find_packages
import sys
import io
setup(
name="keras-text-cls",
version="0.1.0",
author="Titicaca",
author_email="lake_titicaca@outlook.com",
description="Text Classification Lib on Keras",
long_description=io.open("README.md", encoding="UTF-8").read(),
license="MIT",
url="https://github.com/titicaca/keras-text-cls",
packages=find_packages(),
entry_points={
},
data_files=[#('data', []),
('doc', ['README.md']),
('conf', ['keras_text_cls/conf/keras_text_cls.cfg']),
('dict', ['keras_text_cls/dict/jieba_dict', 'keras_text_cls/dict/stop_words'])],
include_package_data=True,
classifiers=[
"Environment :: Web Environment",
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Natural Language :: Chinese',
'Operating System :: MacOS',
'Operating System :: Microsoft',
'Operating System :: POSIX',
'Operating System :: Unix',
'Topic :: NLP',
'Topic :: Software Development :: Libraries :: Python Modules',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
],
install_requires=[
'jieba>=0.39',
'gensim>=3.4.0',
'tensorflow>=1.12.0',
'pytest>=3.6.3',
'pandas>=0.23.3',
'numpy>=1.14.3',
'Cython>=0.28.5',
'fasttext>=0.8.3',
'keras>=2.2.4',
'scikit-learn>=0.20.0',
'tqdm'
],
zip_safe=True,
)