forked from yongyehuang/deepnlp
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
47 lines (45 loc) · 1.36 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
#!/usr/bin/env Python
#coding=utf-8
from distutils.core import setup
from setuptools import find_packages
setup(
name = 'deepnlp',
version = '0.1.6',
description = 'Deep Learning NLP Pipeline implemented on Tensorflow',
author = 'Xichen Ding',
author_email = '[email protected]',
url = 'https://github.com/rockingdingo/deepnlp',
license="MIT",
keywords='DeepLearning NLP Tensorflow deepnlp.org',
packages=find_packages(),
package_data={
'deepnlp': [
'segment/data/crf_model',
'segment/data/template',
'segment/train_crf.sh',
'pos/trainPOSModel.sh',
'pos/data/zh/word_to_id',
'pos/data/zh/tag_to_id',
'pos/ckpt/zh/*',
'textrank/docs.txt',
'segment/README.md',
'pos/README.md',
'ner/README.md',
'textsum/README.md',
],
'test': [
'docs_api.txt',
'docs_test.txt',
],
},
classifiers=[
'Development Status :: 4 - Beta',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Topic :: Scientific/Engineering',
'Topic :: Software Development',
'Topic :: Scientific/Engineering :: Artificial Intelligence',
],
requires=['numpy', 'tensorflow', 'CRFPP',
],
)