[build-system] requires = ["setuptools>=42", "wheel"] build-backend = "setuptools.build_meta" [project] name = "evo-ai" version = "1.0.0" description = "API for executing AI agents" readme = "README.md" authors = [ {name = "EvoAI Team", email = "admin@evoai.com"} ] requires-python = ">=3.10" license = {text = "Proprietary"} classifiers = [ "Programming Language :: Python :: 3", "Programming Language :: Python :: 3.10", "License :: Other/Proprietary License", "Operating System :: OS Independent", ] # Main dependencies dependencies = [ "fastapi==0.115.12", "uvicorn==0.34.2", "pydantic==2.11.3", "sqlalchemy==2.0.40", "psycopg2-binary==2.9.10", "google-cloud-aiplatform==1.90.0", "python-dotenv==1.1.0", "google-adk==0.3.0", "litellm==1.67.4.post1", "python-multipart==0.0.20", "alembic==1.15.2", "asyncpg==0.30.0", "python-jose==3.4.0", "passlib==1.7.4", "sendgrid==6.11.0", "pydantic-settings==2.9.1", "fastapi_utils==0.8.0", "bcrypt==4.3.0", "jinja2==3.1.6", "pydantic[email]==2.11.3", "httpx==0.28.1", "httpx-sse==0.4.0", "redis==5.3.0", "sse-starlette==2.3.3", "jwcrypto==1.5.6", "pyjwt[crypto]==2.9.0", ] [project.optional-dependencies] dev = [ "black==25.1.0", "flake8==7.2.0", "pytest==8.3.5", "pytest-cov==6.1.1", "httpx==0.28.1", "pytest-asyncio==0.26.0", ] [tool.setuptools] packages = ["src"] [tool.black] line-length = 88 target-version = ["py310"] include = '\.pyi?$' exclude = ''' /( \.git | \.hg | \.mypy_cache | \.tox | \.venv | _build | buck-out | build | dist | venv | alembic/versions )/ ''' [tool.pytest.ini_options] testpaths = ["tests"] python_files = "test_*.py" python_functions = "test_*" python_classes = "Test*" filterwarnings = [ "ignore::DeprecationWarning", ] [tool.coverage.run] source = ["src"] omit = ["tests/*", "alembic/*"]