-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
28 lines (27 loc) · 949 Bytes
/
setup.py
File metadata and controls
28 lines (27 loc) · 949 Bytes
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
from setuptools import setup, find_packages
setup(
name="consol",
version="0.3.0",
packages=find_packages(),
install_requires=[
'python-dotenv',
'scipy',
'pandas',
'langchain>=0.3.14',
'langchain-openai>=0.2.2',
'langchain-ollama>=0.2.3',
'langchain-google-genai>=2.1.0',
],
entry_points={
'console_scripts': [
'consol=consol.main:main',
],
},
author=["Jaeyeon Lee", "Hyun-Hwan Jeong"],
author_email=["Jaeyeon.Lee@bcm.edu", "hyun-hwan.jeong@bcm.edu"],
description="Confident Solver enables you to solve problems confidently and efficiently by leveraging Large Language Models (LLMs) enhanced with robust statistical approaches, such as the SPRT",
long_description=open("README.md").read(),
long_description_content_type="text/markdown",
url="https://github.com/LiuzLab/consol",
python_requires=">=3.11.0",
)