aboutsummaryrefslogtreecommitdiffstats
path: root/pyproject.toml
blob: dced5279af2dca515bfd26dd56da4eccad77bd25 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
[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"

[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"