-
Notifications
You must be signed in to change notification settings - Fork 11
/
pyproject.toml
38 lines (33 loc) · 953 Bytes
/
pyproject.toml
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
[build-system]
requires = ["setuptools"]
build-backend = "setuptools.build_meta"
[project]
name = "tools"
version = "0.1.dev0"
description = "Tools and scripts for Reinout"
authors = [
{name = "Reinout van Rees", email = "[email protected]"},
]
readme = "README.rst"
requires-python = ">=3.12"
dependencies = []
[tool.setuptools]
packages = ["tools"]
[project.scripts]
log = "tools.engineerlog:main"
add_time = "tools.add_time:main"
copytoblog = "tools.blog:copytoblog"
dtname = "tools.dtname:main"
new_sermon = "tools.blog:new_sermon"
fixthunderbird = "tools.thunderbird:fix_thunderbird"
gh = "tools.github:main"
latestentries = "tools.blog:list_todays_entries"
makedocs = "tools.blog:makedocs"
sommen = "tools.sommen:main"
gac = "tools.git:main"
mkinit = "tools.mkinit:main"
python_coding_cleanup = "tools.python_coding_cleanup:main"
[tool.ruff]
target-version = "py312"
[tool.ruff.lint]
select = ["E4", "E7", "E9", "F", "I", "UP", "C901"]