##################################
#       CORE RUNTIME DEPS        #
##################################
#
# Anything imported unconditionally by a top-level autonomous module lives
# here. Provider-specific or workload-specific dependencies live in the
# extras configured under [project.optional-dependencies] in pyproject.toml.
#
# Install everything with:   pip install autonomous-app[all]
# Install a feature group:   pip install autonomous-app[ai,tasks]

# Configuration
python-dotenv

# Mongo ORM
pymongo
blinker

# OAuth2 / Authentication
Authlib

# HTTP for db_sync, AutoAuth callbacks, AI HTTP backends
requests
