forked from gregversteeg/corex_topic
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
23 lines (21 loc) · 847 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
import setuptools
with open('README.md', 'r') as f:
long_description = f.read()
setuptools.setup(
name='corextopic',
version='1.0.4',
author='Greg Ver Steeg/Ryan J. Gallagher',
author_email='gregv@isi.edu',
keywords=['topic model', 'corex', 'anchored corex', 'LDA', 'semi-supervised', 'hierarchical topic model', 'information theory'],
description='Hierarchical and semi-supervised topic modeling with minimal domain knowledge through Anchored Correlation Explanation',
long_description=long_description,
long_description_content_type='text/markdown',
url='https://github.com/gregversteeg/corex_topic',
packages=setuptools.find_packages(),
classifiers=[
'Programming Language :: Python',
'Programming Language :: Python :: 3',
'License :: OSI Approved :: Apache Software License',
'Operating System :: OS Independent',
],
)