-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpyproject.toml
More file actions
51 lines (39 loc) · 1.06 KB
/
pyproject.toml
File metadata and controls
51 lines (39 loc) · 1.06 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
# Notes on how to do a release.
#
# * Bump `__version__` and commit.
# * git tag vx.y
# * git push origin main vx.y
# * flit publish
# ===== Project info
[project]
dynamic = ["version"]
name = "dialite"
description = "Lightweight Python library to show simple dialogs"
readme = "README.md"
license = { file = "LICENSE" }
authors = [{ name = "Almar Klein" }]
keywords = ["GUI", "dialog", "lightweight"]
requires-python = ">= 3.6"
dependencies = []
[project.optional-dependencies]
lint = ["ruff"]
tests = ["pytest"]
docs = ["sphinx"]
dev = ["dialite[lint,tests, docs]"]
[project.urls]
Homepage = "https://github.com/flexxui/dialite"
Documentation = "http://dialite.readthedocs.io"
Repository = "https://github.com/flexxui/dialite"
# ===== Building
# Flit is great solution for simple pure-Python projects.
[build-system]
requires = ["flit_core >=3.2,<4"]
build-backend = "flit_core.buildapi"
# ===== Tooling
[tool.ruff]
line-length = 88
[tool.ruff.lint]
select = ["F", "E", "W", "B", "RUF"]
ignore = [
"RUF005", # Consider iterable unpacking instead of concatenation
]