[tool.poetry] name = "foxnouns" version = "0.1.0" description = "" authors = ["sam "] license = "Apache-2.0" readme = "README.md" [tool.poetry.dependencies] python = "^3.11" sqlalchemy = { extras = ["asyncio"], version = "^2.0.28" } psycopg = "^3.1.18" celery = { extras = ["redis"], version = "^5.3.6" } quart = "^0.19.4" quart-schema = { extras = ["pydantic"], version = "^0.19.1" } pydantic = "^2.6.3" itsdangerous = "^2.1.2" uvicorn = "^0.28.0" asyncpg = "^0.29.0" environs = "^11.0.0" alembic = "^1.13.1" [tool.poetry.group.test] optional = true [tool.poetry.group.test.dependencies] pytest = "^8.0.2" pytest-asyncio = "^0.23.5.post1" [tool.poe.tasks] server = "uvicorn 'foxnouns.app:app'" migrate = "alembic upgrade head" test = "pytest" [tool.pytest.ini_options] addopts = ["--import-mode=importlib"] [build-system] requires = ["poetry-core"] build-backend = "poetry.core.masonry.api"