Spaces:
Running
Running
from pathlib import Path | |
from setuptools import setup, find_packages | |
setup( | |
name="formpilot", | |
version="0.1.0", | |
packages=find_packages(exclude=("tests", "data")), | |
install_requires=[ # only libs the top‑level code needs | |
"langchain-openai>=0.1.4", | |
"qdrant-client>=1.10.1,<2", | |
"ragas>=0.1.7", | |
# …everything already in requirements.txt | |
], | |
) | |