forked from AdrienGuille/TOM
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
45 lines (43 loc) · 1.23 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
# coding: utf-8
from setuptools import setup, find_packages
import tom_lib
version = tom_lib.__version__
setup(
name='tom_lib',
version=version,
packages=find_packages(),
author="Adrien Guille, Pavel Soriano, Matt Mollison",
author_email="[email protected]",
description="A library for topic modeling and browsing (forked by MVM)",
long_description=open('README.rst').read(),
url='http://mediamining.univ-lyon2.fr/people/guille/tom.php',
download_url=f'http://pypi.python.org/packages/source/t/tom_lib/tom_lib-{version}.tar.gz',
license="MIT",
classifiers=[
'Programming Language :: Python',
'Development Status :: 4 - Beta',
'Intended Audience :: Science/Research',
"Operating System :: OS Independent",
'Programming Language :: Python :: 3.7',
'Topic :: Scientific/Engineering',
'Topic :: Text Processing'
],
install_requires=[
'dash',
'dash-daq',
'dash-table',
'gensim',
'lda',
'matplotlib',
'networkx',
'nltk',
'numpy',
'openpyxl',
'pandas',
'plotly',
'scikit-learn',
'scipy',
'seaborn',
'smart_open',
]
)