-
Notifications
You must be signed in to change notification settings - Fork 38
/
setup.py
23 lines (21 loc) · 871 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
from setuptools import setup, find_packages
with open("README.md", "r") as fh:
long_description = fh.read()
setup(
name="hlda",
version="0.3.1",
author="Joe Wandy",
author_email="[email protected]",
description = 'Gibbs sampler for the Hierarchical Latent Dirichlet Allocation topic model. This is based on the hLDA implementation from Mallet, having a fixed depth on the nCRP tree.',
long_description=long_description,
long_description_content_type='text/markdown',
url = 'https://github.com/joewandy/hlda', # use the URL to the github repo
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Operating System :: OS Independent",
],
python_requires='>=3',
packages=find_packages(),
install_requires=['numpy'],
)