-
Notifications
You must be signed in to change notification settings - Fork 181
Expand file tree
/
Copy pathpyproject.toml
More file actions
68 lines (56 loc) · 1.63 KB
/
pyproject.toml
File metadata and controls
68 lines (56 loc) · 1.63 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
[build-system]
requires = ["flit_core>=3.12", "flit_scm"]
build-backend = "flit_scm:buildapi"
[project]
name = "tabulate"
authors = [{name = "Sergey Astanin", email = "s.astanin@gmail.com"}]
license = "MIT"
license-files = ["LICENSE"]
description = "Pretty-print tabular data"
readme = "README.md"
classifiers = [
"Development Status :: 4 - Beta",
"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",
"Programming Language :: Python :: 3.14",
"Topic :: Software Development :: Libraries",
]
requires-python = ">=3.10"
dynamic = ["version"]
[project.urls]
Homepage = "https://github.com/astanin/python-tabulate"
[project.optional-dependencies]
widechars = ["wcwidth>=0.6.0"]
[project.scripts]
tabulate = "tabulate.cli:_main"
[tool.flit.sdist]
include = ["CHANGELOG", "test/", "tox.ini"]
[tool.setuptools_scm]
write_to = "tabulate/_version.py"
[dependency-groups]
dev = [
"build>=1.4.0",
"ruff>=0.15.4",
"pre_commit>=4.5.1",
"tox>=4.47.3",
"tox-uv>=1.0",
"twine>=6.2.0",
]
[tool.pytest.ini_options]
addopts = "-v --doctest-modules --ignore=benchmark --doctest-glob=README.md"
[tool.ruff]
line-length = 99
exclude = ["tabulate/_version.py"]
[tool.ruff.lint]
extend-select = ["W", "B", "C4", "ISC", "I", "C90", "UP"]
ignore = ["B905", "E721", "C901"]
[tool.ruff.lint.mccabe]
max-complexity = 22
[tool.ruff.lint.isort]
combine-as-imports = true
force-sort-within-sections = true
known-local-folder = ["common"]