-
Notifications
You must be signed in to change notification settings - Fork 61
Expand file tree
/
Copy pathpyproject.toml
More file actions
41 lines (37 loc) · 1.33 KB
/
pyproject.toml
File metadata and controls
41 lines (37 loc) · 1.33 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
[build-system]
requires = ["setuptools"]
build-backend = "setuptools.build_meta"
[project]
name = "tksheet"
description = "Tkinter table / sheet and treeview widget"
readme = "README.md"
version = "7.6.0"
authors = [{ name = "ragardner", email = "github@ragardner.simplelogin.com" }]
requires-python = ">=3.8"
license = "MIT"
license-files = ["LICENSE.txt"]
keywords = ["tkinter", "table", "widget", "tree", "treeview", "sheet", "grid", "tk"]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"Topic :: Software Development :: Libraries",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"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",
]
[project.urls]
Homepage = "https://github.com/ragardner/tksheet"
Documentation = "https://github.com/ragardner/tksheet/wiki/Version-7"
Changelog = "https://github.com/ragardner/tksheet/blob/master/docs/CHANGELOG.md"
Issues = "https://github.com/ragardner/tksheet/issues"
Funding = "https://github.com/ragardner"
[tool.ruff]
line-length = 120
fix = true
[tool.ruff.lint]
extend-select = ["I", "F", "C4", "E", "B", "SIM"]
ignore = ["SIM401"]