-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathsetup.py
29 lines (26 loc) · 936 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
24
25
26
27
28
29
from setuptools import setup, find_packages
with open("README.md", "r", encoding="utf-8") as f:
LONG_DESCRIPTION = f.read()
VERSION = '0.0.10'
DESCRIPTION = 'A new transformer-based topic modeling library.'
setup(
name="leet_topic",
author="WJB Mattingly, Joel Lee",
version=VERSION,
description=DESCRIPTION,
long_description=LONG_DESCRIPTION,
long_description_content_type='text/markdown',
packages=find_packages(),
install_requires=["pandas>=1.0.0,<2.0.0",
"bokeh>=2.4.0, <2.4.3",
"sentence_transformers>=2.0.0",
"umap-learn>=0.5.0",
"hdbscan>=0.8.0",
"protobuf>=4.24.2",
"wrapt==1.14.0",
"tensorflow>=2.8.0",
"spacy>=3.3.0",
"gensim>=4.3.0",
"annoy>=1.17.0"
],
)