forked from JasonKessler/scattertext
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
40 lines (39 loc) · 1.01 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
from setuptools import setup, find_packages
setup(name='scattertext',
version='0.0.2.51',
description='An NLP package to visualize interesting terms in text.',
url='https://github.com/JasonKessler/scattertext',
author='Jason Kessler',
author_email='jason.kessler@gmail.com',
license='Apache 2.0',
packages=find_packages(),
install_requires=[
'numpy',
'scipy',
'scikit-learn',
'pandas',
'six',
'mock',
'statsmodels',
#'spacy',
#'jieba',
#'tinysegmenter',
#'empath',
#'umap',
#'gensim'
# '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)