Spaces:
No application file
No application file
| from setuptools import setup, find_packages | |
| setup( | |
| name="product_recommender", | |
| version="0.1.0", | |
| packages=find_packages(), | |
| install_requires=[ | |
| "fastapi>=0.103.1", | |
| "uvicorn>=0.23.2", | |
| "sentence-transformers>=2.5.0", | |
| "scikit-learn>=1.4.0", | |
| "python-dotenv>=1.0.0", | |
| "google-cloud-bigquery>=3.13.0", | |
| "huggingface-hub>=0.25.2", | |
| "pydantic>=2.5.0", | |
| "pydantic-settings>=2.1.0", | |
| ], | |
| python_requires=">=3.9", | |
| ) | |