-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
97 lines (88 loc) · 2.52 KB
/
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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
[project]
name = "yuio"
authors = [{name = "Tamika Nomara", email = "[email protected]"}]
description = "Lite and user-friendly CLI library"
dynamic = ["version"]
readme = "README.md"
license = {file = "LICENSE"}
requires-python = ">=3.8"
classifiers = [
"Development Status :: 5 - Production/Stable",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"License :: OSI Approved :: MIT License",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: Software Development :: User Interfaces",
"Topic :: System :: Logging",
"Intended Audience :: Developers",
"Environment :: Console",
"Typing :: Typed",
]
[project.optional-dependencies]
dev = [
"pytest-cov~=6.0.0",
"yuio[test,lint,doc]",
]
lint = [
"black~=23.7",
"isort~=5.12",
"pre-commit~=3.8.0",
]
test = [
"pyright~=1.1",
"pytest~=7.4",
"PyYaml~=6.0",
"sybil~=6.1",
"toml~=0.10",
"types-PyYAML~=5.3",
"types-toml~=0.10",
"typing_extensions~=4.12",
]
doc = [
"furo~=2024.8",
"sphinx-vhs~=0.0.3",
"sphinx~=6.1",
"sybil~=6.1",
]
[project.urls]
Documentation = "https://taminomara.github.io/yuio/"
Issues = "https://github.com/taminomara/yuio/issues"
Source = "https://github.com/taminomara/yuio/"
Changelog = "https://github.com/taminomara/yuio/blob/main/CHANGELOG.md"
[build-system]
requires = ["setuptools>=45", "setuptools_scm[toml]>=6.2", "wheel>=0.40"]
[tool.setuptools_scm]
write_to = "yuio/_version.py"
[tool.pytest.ini_options]
minversion = "7.0"
addopts = ["--strict-markers", "-p no:doctest"]
testpaths = ["examples", "test", "yuio", "docs"]
[tool.pyright]
include = ["yuio", "examples"]
exclude = ["**/__pycache__"]
typeCheckingMode = "strict"
pythonVersion = "3.8"
pythonPlatform = "All"
# deprecateTypingAliases = true
reportUnnecessaryTypeIgnoreComment = "warning"
reportUnusedFunction = "none"
reportPrivateUsage = "none"
reportMissingParameterType = "none"
reportUnknownParameterType = "none"
reportUnknownVariableType = "none"
reportUnknownMemberType = "none"
reportUnknownArgumentType = "none"
reportUnknownLambdaType = "none"
reportUnnecessaryIsInstance = "none"
reportConstantRedefinition = "none"
reportRedeclaration = "none"
[tool.black]
extend-exclude = '^/docs'
[tool.isort]
profile = "black"
extend_skip_glob = ["docs/*"]
skip_gitignore = true