-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
21 lines (20 loc) · 823 Bytes
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
from __future__ import absolute_import
from setuptools import setup, Extension
setup(
name='stmpy',
version='1.0.0',
description='Covariate-Augmented Probabilistic Topic Models in PySpark',
author='Antonio Coppola, Margaret E. Roberts, Brandon M. Stewart and Dustin Tingley',
author_email="acoppola@college.harvard.edu, bms4@princeton.edu",
packages=['stmpy'],
package_dir={'stmpy': 'stmpy'},
package_data={'stmpy': ['R/*.R']},
install_requires=['numpy>=1.9', 'six'],
setup_requires=['numpy>=1.9'],
keywords=['Topic models', 'natural language processing',
'unsupervised learning', 'machine learning', 'LDA',
'Python', 'Numpy', 'Scipy'],
url='https://github.com/AntonioCoppola/stmpy',
license='MIT',
classifiers=['Programming Language :: Python :: 2.7'],
)