-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
39 lines (32 loc) · 867 Bytes
/
Copy pathpyproject.toml
File metadata and controls
39 lines (32 loc) · 867 Bytes
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
[project]
name = "fastprompter"
version = "0.7.0a"
description = "FastPrompter - A robust snippet management tool"
requires-python = ">=3.11"
dependencies = [
"PyQt6>=6.8.0",
"pynput>=1.7.6",
]
[project.optional-dependencies]
build = ["nuitka>=4.1.2"]
[project.scripts]
fastprompter = "fastprompter.main:main_entry"
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.hatch.build.targets.wheel]
packages = ["src/fastprompter"]
[tool.ruff]
line-length = 100
target-version = "py311"
[tool.ruff.lint]
select = ["E", "F", "I", "W", "UP"]
# Legacy compact style: long lines, one-line statements, and late imports
# are pervasive in this codebase. Re-tighten once it gets reformatted.
ignore = ["E402", "E501", "E701", "E702", "W293"]
[dependency-groups]
dev = [
"bandit>=1.9.4",
"mypy>=2.3.0",
"pyright>=1.1.411",
]