-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
39 lines (35 loc) · 958 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
[tool.poetry]
name = "tanmatsu"
version = "0.1.1"
description = "Declarative Terminal User Interface Library"
authors = ["snowdrop4 <82846066+snowdrop4@users.noreply.github.com>"]
license = "MIT"
readme = "README.md"
repository = "/~https://github.com/snowdrop4/tanmatsu"
documentation = "https://tanmatsu.readthedocs.io/en/latest/"
classifiers = [
"Topic :: Software Development :: User Interfaces",
"Topic :: Terminals",
"Environment :: Console",
"Operating System :: POSIX :: Linux",
]
[tool.poetry.dependencies]
python = "^3.11"
"tri.declarative" = "^5.0"
parsy = "~1.3.0"
wcwidth = "^0.2"
[tool.poetry.dev-dependencies]
sphinx = "^5"
mypy = "*"
isort = "*"
[tool.mypy]
plugins = []
ignore_missing_imports = true
warn_unused_configs = true
disallow_untyped_defs = true
disallow_incomplete_defs = true
warn_unreachable = true
exclude = ["demos/*", "docs/*"]
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"