-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
45 lines (38 loc) · 992 Bytes
/
pyproject.toml
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
35
36
37
38
39
40
41
42
43
44
45
# SPDX-FileCopyrightText: Stefan Tatschner
#
# SPDX-License-Identifier: CC0-1.0
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.poetry]
name = "exitcode"
version = "0.1.0"
description = "Preferred system exit codes as defined by sysexits.h"
license = "MIT"
readme = "README.md"
repository = "https://github.com/rumpelsepp/exitcode"
authors = ["Stefan Tatschner <stefan@rumpelsepp.org>"]
maintainers = ["Stefan Tatschner <stefan@rumpelsepp.org>"]
classifiers = [
"Operating System :: POSIX :: Linux",
]
[tool.poetry.dependencies]
python = ">=3.10"
[tool.poetry.group.dev.dependencies]
black = ">=22.10,<24.0"
mypy = "^1.0"
pylsp-mypy = "^0.6"
pylsp-rope = "^0.1"
python-lsp-black = "^1.2"
python-lsp-server = "^1.7"
reuse = "^1.0.0"
flake8 = "^6.0.0"
ruff = ">=0.0.247,<0.0.292"
python-lsp-ruff = "^1.0.5"
[tool.mypy]
strict = true
[tool.ruff]
target-version = "py310"
select = ["E", "F", "PL", "I"]
[tool.black]
target-version = ['py310']