from setuptools import setup, find_packages

setup(
    name="phonemate_backend",
    version="0.1",
    packages=find_packages(),
    install_requires=[
        "fastapi>=0.109.1",
        "uvicorn>=0.27.0",
        "pydantic>=2.7.0",
        "python-jose[cryptography]>=3.3.0",
        "passlib[bcrypt]>=1.7.4",
        "python-multipart>=0.0.6",
        "phonenumbers>=8.13.30",
        "pymongo>=4.6.1",
        "python-dotenv>=1.0.0",
        "retell-sdk>=1.0.0",
        "twilio>=8.10.0",
    ],
) 