aboutsummaryrefslogtreecommitdiffstats
path: root/pyproject.toml
blob: e01f4606faa781cf8dce802becedd41104914bdf (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
[tool.poetry]
name = "paste"
version = "0.1.0"
description = "A simple WSGI paste site"
authors = ["Tomasz Kramkowski <tomasz@kramkow.ski>"]
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"