-
Notifications
You must be signed in to change notification settings - Fork 28
/
setup.py
29 lines (27 loc) · 1.06 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
# coding: utf-8
from setuptools import setup, find_packages
import tom_lib
__author__ = "Adrien Guille, Pavel Soriano"
__email__ = "[email protected]"
version = tom_lib.__version__
setup(
name='tom_lib',
version=version,
packages=find_packages(),
author="Adrien Guille, Pavel Soriano",
author_email="[email protected]",
description="A library for topic modeling and browsing",
long_description=open('README.rst').read(),
url='http://mediamining.univ-lyon2.fr/people/guille/tom.php',
download_url='http://pypi.python.org/packages/source/t/tom_lib/tom_lib-%s.tar.gz' % version,
license = "MIT",
classifiers=[
'Programming Language :: Python',
'Development Status :: 4 - Beta',
'Intended Audience :: Science/Research',
"Operating System :: OS Independent",
'Programming Language :: Python :: 2.7',
'Topic :: Scientific/Engineering',
'Topic :: Text Processing'
],
install_requires=['scikit-learn', 'networkx', 'pandas', 'scipy', 'numpy', 'lda', 'nltk'])