[tool.poetry] name = "langgraph-checkpoint-postgres" version = "1.0.3" description = "Library with a Postgres implementation of LangGraph checkpoint saver." authors = [] license = "MIT" readme = "README.md" repository = "https://www.github.com/langchain-ai/langgraph" packages = [{ include = "langgraph" }] [tool.poetry.dependencies] python = "^3.9.0,<4.0" langgraph-checkpoint = "^1.0.1" orjson = ">=3.10.1" psycopg = {extras = ["binary"], version = ">=3.1.19"} [tool.poetry.group.dev.dependencies] ruff = "^0.1.4" codespell = "^2.2.0" pytest = "^7.2.1" anyio = "^4.4.0" pytest-asyncio = "^0.21.1" pytest-mock = "^3.11.1" pytest-watch = "^4.2.0" mypy = "^1.10.0" psycopg-pool = "^3.2.2" langgraph-checkpoint = {path = "../checkpoint", develop = true} [tool.pytest.ini_options] # --strict-markers will raise errors on unknown marks. # https://docs.pytest.org/en/7.1.x/how-to/mark.html#raising-errors-on-unknown-marks # # https://docs.pytest.org/en/7.1.x/reference/reference.html # --strict-config any warnings encountered while parsing the `pytest` # section of the configuration file raise errors. addopts = "--strict-markers --strict-config --durations=5 -vv" asyncio_mode = "auto" [build-system] requires = ["poetry-core"] build-backend = "poetry.core.masonry.api" [tool.ruff] lint.select = [ "E", # pycodestyle "F", # Pyflakes "UP", # pyupgrade "B", # flake8-bugbear "I", # isort ] lint.ignore = ["E501", "B008", "UP007", "UP006"]