-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
45 lines (37 loc) · 915 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
[tool.poetry]
name = "keychain-access"
version = "0.1.2"
description = "Access to the OSX Keychain API in Python."
authors = ["Max Muoto <[email protected]>"]
readme = "README.md"
license = "MIT"
include = ["keychain_access/py.typed"]
[tool.poetry.dependencies]
python = "^3.8"
pyobjc = "^10.2"
[tool.poetry.group.dev.dependencies]
pyright = "^1.1.364"
ruff = "^0.4.5"
pytest = "^8.2.1"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.ruff]
target-version = "py38"
line-length = 100
lint.extend-select = ["I"]
[tool.ruff.format]
docstring-code-format = true
[tool.ruff.lint.isort]
required-imports = ["from __future__ import annotations"]
[tool.pyright]
include = ["keychain_access", "typings"]
exclude = [
"**/node_modules",
"**/__pycache__",
"src/experimental",
"src/typestubs",
"**/venv",
]
pythonVersion = "3.8"
typeCheckingMode = "strict"