-
Notifications
You must be signed in to change notification settings - Fork 17
/
Copy pathsetup.py
47 lines (46 loc) · 1.22 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
from setuptools import setup, find_packages
setup(
name="lyzr",
version="0.1.43",
author="lyzr",
description="",
long_description=open("README.md").read(),
long_description_content_type="text/markdown",
url="",
include_package_data=True,
packages=find_packages(),
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
],
python_requires=">=3.8.1, <3.12",
install_requires=[
"openai",
"litellm",
"asyncio",
"aenum",
"nest_asyncio",
"llama-index==0.9.4",
"langchain==0.0.339",
"python-dotenv>=1.0.0",
"beautifulsoup4==4.12.2",
"pandas==2.0.2",
"weaviate-client==3.25.3",
"llmsherpa",
],
extras_require={
"data-analyzr": [
"matplotlib==3.8.2",
"seaborn==0.13.2",
"scikit-learn==1.4.0",
"statsmodels==0.14.1",
"chromadb==0.4.22",
"tabulate==0.9.0",
"pmdarima==2.0.4",
"openpyxl==3.1.2",
"redshift_connector==2.0.918",
"psycopg2-binary==2.9.9",
],
},
)