-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
38 lines (37 loc) · 1.12 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
from setuptools import setup, find_packages
setup(
name="synsearch",
version="0.1.0",
packages=find_packages(),
install_requires=[
"numpy>=1.19.0",
"torch>=2.0.0",
"transformers>=4.15.0",
"scikit-learn>=0.24.0",
"sentence-transformers>=2.2.0",
"hdbscan>=0.8.29",
"plotly>=5.3.0",
"streamlit>=1.2.0",
"pytest>=6.0.0",
"dash>=2.0.0",
"dash-bootstrap-components>=1.0.0",
"dash-core-components>=2.0.0",
"dash-html-components>=2.0.0",
"dash-table>=5.0.0",
"jupyter-dash>=0.4.0",
"spacy>=3.5.0", # Added spacy
"cachetools>=5.0.0",
"joblib>=1.1.0"
],
python_requires=">=3.8",
author="Your Name",
author_email="[email protected]",
description="Dynamic Summarization and Adaptive Clustering Framework",
long_description=open("README.md").read(),
long_description_content_type="text/markdown",
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
],
)