-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
40 lines (37 loc) · 900 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
[project]
name = "bitui"
version = "0.1.0"
description = "Bitcoin's blockchain TUI viewer"
readme = "README.md"
license.file = "LICENSE"
authors = [{name = "leoperegrino"}]
urls.repository = "https://github.com/leoperegrino/bitui"
scripts.bitui = "bitui.main:main"
dependencies = [
"requests",
]
optional-dependencies.test = [
"pytest",
"pytest-cov",
]
keywords = [
"terminal",
"TUI",
"viewer",
]
classifiers = [
"Environment :: Console :: Curses",
"License :: OSI Approved :: GNU Affero General Public License v3",
"Operating System :: POSIX :: Linux",
"Programming Language :: Python :: 3 :: Only",
"Topic :: Software Development :: User Interfaces",
"Topic :: System :: Shells",
"Topic :: Terminals",
]
[tool.mypy]
check_untyped_defs = true
disallow_incomplete_defs = true
disallow_untyped_defs = true
no_implicit_optional = true
show_error_codes = true
warn_unused_ignores = true