-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
53 lines (46 loc) · 1.27 KB
/
pyproject.toml
File metadata and controls
53 lines (46 loc) · 1.27 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
[build-system]
requires = ["uv_build>=0.9.28,<0.10.0"]
build-backend = "uv_build"
[project]
name = "commit-editor"
version = "0.4.0"
description = "A terminal-based git commit message editor with opinionated formatting"
readme = "README.md"
license = "MIT"
requires-python = ">=3.11"
authors = [
{ name = "Martin Prpič", email = "martin.prpic@gmail.com" }
]
classifiers = [
"Development Status :: 3 - Alpha",
"Environment :: Console",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: 3.14",
"Topic :: Software Development :: Version Control :: Git",
"Topic :: Text Editors",
]
dependencies = [
"pyspellchecker>=0.8.0",
"textual>=0.50.0",
]
[project.scripts]
commit-editor = "commit_editor.cli:main"
[project.optional-dependencies]
dev = [
"pytest",
"pytest-asyncio",
"ruff",
]
[tool.ruff]
line-length = 100
[tool.ruff.lint]
select = ["F", "E", "W", "I", "N"]
[tool.pytest.ini_options]
asyncio_mode = "auto"
asyncio_default_fixture_loop_scope = "function"