forked from ddangelov/Top2Vec
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
51 lines (49 loc) · 1.49 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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
import setuptools
with open("README.md", "r") as fh:
long_description = fh.read()
setuptools.setup(
name="top2vec",
packages=["top2vec"],
version="1.0.26",
author="Dimo Angelov",
author_email="[email protected]",
description="Top2Vec learns jointly embedded topic, document and word vectors.",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/ddangelov/Top2Vec",
keywords="topic modeling semantic search word document embedding",
license="BSD",
classifiers=[
"Development Status :: 3 - Alpha",
"Programming Language :: Python :: 3",
"Intended Audience :: Science/Research",
"Intended Audience :: Developers",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
"Topic :: Scientific/Engineering :: Information Analysis",
"License :: OSI Approved :: BSD License",
"Operating System :: OS Independent",
],
install_requires=[
'numpy >= 1.20.0',
'pandas',
'gensim < 4.0.0',
'umap-learn >= 0.5.1',
'hdbscan >= 0.8.27',
'wordcloud',
],
extras_require={
'sentence_encoders': [
'tensorflow',
'tensorflow_hub',
'tensorflow_text',
],
'sentence_transformers': [
'torch',
'sentence_transformers',
],
'indexing': [
'hnswlib',
],
},
python_requires='>=3.6',
)