forked from JasonKessler/scattertext
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
36 lines (35 loc) · 951 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
35
36
from setuptools import setup, find_packages
setup(name='scattertext',
version='0.0.2.5.0',
description='An NLP libarary to help find interesting terms in small to medium-sized corpora.',
url='https://github.com/JasonKessler/scattertext',
author='Jason Kessler',
author_email='jason.kessler@gmail.com',
license='MIT',
packages=find_packages(),
install_requires=[
'nose',
'numpy',
'scipy',
'sklearn',
'pandas',
'spacy',
'jieba',
'empath',
# 'matplotlib',
# 'seaborn',
# 'jupyter',
],
package_data={
'scattertext': ['data/*', 'data/viz/*', 'data/viz/*/*']
},
test_suite="nose.collector",
tests_require=['nose'],
setup_requires=['nose>=1.0'],
entry_points={
'console_scripts': [
'scattertext = scattertext.CLI:main',
],
},
zip_safe=False
)