forked from blmoistawinde/HarvestText
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
34 lines (32 loc) · 1023 Bytes
/
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
#!/usr/bin/env python
# -*- coding: utf-8 -*-
from setuptools import setup, find_packages
setup(
name='harvesttext',
author="blmoistawinde",
author_email="1840962220@qq.com",
version = "0.4.1",
license='MIT',
keywords='NLP, tokenizing, entity linking, sentiment analysis',
url='https://github.com/blmoistawinde/HarvestText',
long_description=open('README.md',encoding="utf-8").read(),
long_description_content_type="text/markdown",
packages = find_packages(),
platforms=["all"],
classifiers=[
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
'Natural Language :: Chinese (Simplified)',
'Natural Language :: Chinese (Traditional)',
'Programming Language :: Python :: 3',
'Topic :: Text Processing',
],
install_requires=[
"jieba",
"numpy",
"pandas",
"networkx"
],
include_package_data = True,
package_data ={"harvesttext":["resources/*"],}
)