-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
76 lines (65 loc) · 1.96 KB
/
pyproject.toml
File metadata and controls
76 lines (65 loc) · 1.96 KB
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
[build-system]
requires = ["setuptools>=61.0", "wheel", "setuptools_scm>=8.0"]
build-backend = "setuptools.build_meta"
[project]
name = "cli-core-yo"
dynamic = ["version"]
description = "Reusable CLI kernel for building unified command-line interfaces with consistent behavior, output style, help, and extension semantics."
readme = "README.md"
license = "MIT"
requires-python = ">=3.10"
authors = [
{name = "Daylily Informatics"},
]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Topic :: Software Development :: Libraries :: Application Frameworks",
"Topic :: Utilities",
"Typing :: Typed",
]
keywords = ["cli", "typer", "rich", "plugin", "xdg", "framework"]
dependencies = [
"typer>=0.21.0,<0.22.0",
"rich>=14.0.0,<15.0.0",
"click>=8.3.0,<9.0.0",
]
[project.urls]
Homepage = "https://github.com/Daylily-Informatics/cli-core-yo"
Repository = "https://github.com/Daylily-Informatics/cli-core-yo"
Issues = "https://github.com/Daylily-Informatics/cli-core-yo/issues"
[project.optional-dependencies]
dev = [
"pytest>=7.0",
"pytest-cov>=4.0",
"ruff>=0.4.0",
"mypy>=1.0",
"build>=1.0",
"twine>=5.0",
]
[tool.setuptools_scm]
version_scheme = "guess-next-dev"
local_scheme = "no-local-version"
write_to = "cli_core_yo/_version.py"
write_to_template = '__version__ = "{version}"'
[tool.setuptools.packages.find]
include = ["cli_core_yo*"]
[tool.ruff]
target-version = "py310"
line-length = 99
[tool.ruff.lint]
select = ["E", "F", "W", "I"]
[tool.pytest.ini_options]
testpaths = ["tests"]
addopts = "-q --tb=short"
[tool.mypy]
python_version = "3.10"
warn_return_any = true
warn_unused_configs = true
ignore_missing_imports = true