[tool.poetry] name = "paste" version = "0.1.0" description = "A simple WSGI paste site" authors = ["Tomasz Kramkowski "] license = "MIT" readme = "README" [tool.poetry.dependencies] python = "^3.9" isort = "^5.12.0" [tool.poetry.group.dev.dependencies] black = "^23.1.0" vermin = "^1.5.1" pyright = "^1.1.0" pytest = "^7" webtest = "^3.0.0" ruff = "^0.0.259" [tool.pytest.ini_options] filterwarnings = [ "ignore:'cgi' is deprecated and slated for removal in Python 3.13:DeprecationWarning" ] [tool.pyright] strict = [ "paste/*" ] stubPath = "" pythonVersion = "3.9" [build-system] requires = ["poetry-core"] build-backend = "poetry.core.masonry.api"