-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
45 lines (43 loc) · 1.18 KB
/
setup.py
File metadata and controls
45 lines (43 loc) · 1.18 KB
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
from distutils.core import setup
setup(
name='topnum',
packages=[
'topnum',
'topnum.data',
'topnum.scores',
'topnum.search_methods',
'topnum.search_methods.topic_bank',
'topnum.search_methods.topic_bank.phi_initialization',
'topnum.tests'
],
version='0.3.1',
license='MIT',
description='A set of methods for finding an appropriate number of topics in a text collection',
author='Machine Intelligence Laboratory',
author_email='vasiliy.alekseyev@phystech.edu',
url='https://github.com/machine-intelligence-laboratory/OptimalNumberOfTopics',
keywords=[
'topic modeling',
'document clustering',
'number of clusters',
'ARTM',
'regularization',
],
install_requires=[
'anchor-topic==0.1.2',
'bigartm>=0.9.2',
'dill==0.3.8',
'lapsolver==1.1.0',
'matplotlib==3.7.5',
'numpy==1.24.4',
'pandas==2.0.3',
'pytest==8.1.1',
'scikit-learn==1.3.2',
'scipy==1.10.1',
'topicnet>=0.9.0',
'tqdm==4.66.3',
],
classifiers=[
'Programming Language :: Python :: 3.8',
],
)