-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
82 lines (76 loc) · 2.32 KB
/
pyproject.toml
File metadata and controls
82 lines (76 loc) · 2.32 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
76
77
78
79
80
81
82
[build-system]
requires = ["build>=1.2.1", "setuptools>=64"]
build-backend = "setuptools.build_meta"
[project]
name = "cmd2_table"
description = "Backport of cmd2.table_creator module from cmd2 2.7.0 to ease migration to cmd2 3.x"
version = "1.0.1"
authors = [{ name = "cmd2 Contributors" }]
readme = "README.md"
requires-python = ">=3.10"
keywords = ["table", "cmd2", "Python"]
license = "MIT"
license-files = ["LICENSE"]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Environment :: Console",
"Operating System :: OS Independent",
"Intended Audience :: Developers",
"Intended Audience :: System Administrators",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: 3.14",
"Programming Language :: Python :: Free Threading :: 3 - Stable",
"Topic :: Software Development :: Libraries :: Python Modules",
]
dependencies = ["cmd2-ansi>=1.0.1", "wcwidth>=0.2.13"]
[dependency-groups]
build = ["build>=1.2.1", "setuptools>=64", "setuptools-scm>=8"]
dev = [
"ipython>=8",
"mypy>=1.12",
"pre-commit>=2.20.0",
"pytest>=7",
"pytest-mock>=3.14",
"ruff>=0.13",
"twine>=6",
"wcwidth-stubs",
]
quality = ["pre-commit>=2.20.0"]
test = ["coverage>=7", "pytest>=7", "pytest-cov>=4", "pytest-mock>=3.14"]
validate = ["mypy>=1.12", "ruff>=0.13", "types-setuptools>=69"]
[tool.mypy]
disallow_incomplete_defs = true
disallow_untyped_calls = true
disallow_untyped_defs = true
exclude = [
"^.git/",
"^.venv/",
"^build/", # .build directory
"^docs/", # docs directory
"^dist/",
"^examples/", # examples directory
"^noxfile\\.py$", # nox config file
"setup\\.py$", # any files named setup.py
"^site/",
"^tasks\\.py$", # tasks.py invoke config file
"^tests/", # tests directory
]
files = ['.']
show_column_numbers = true
show_error_codes = true
show_error_context = true
strict = true
warn_redundant_casts = true
warn_return_any = true
warn_unreachable = true
warn_unused_ignores = false
[tool.pytest.ini_options]
testpaths = ["tests"]
[tool.setuptools]
packages = ["cmd2_table"]
[tool.uv]
default-groups = ["build", "dev"]