Spaces:
No application file
No application file
File size: 493 Bytes
480e694 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 |
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",
)
|