-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
52 lines (43 loc) · 1.04 KB
/
Copy pathpyproject.toml
File metadata and controls
52 lines (43 loc) · 1.04 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
[project]
name = "copyboard"
version = "0.1.0"
description = "A cross-platform tray app that shows a live view of your recent clipboard clippings."
readme = "README.md"
requires-python = ">=3.10"
dependencies = [
"PySide6>=6.7",
"pynput>=1.7",
"typing-extensions>=4.10",
]
[project.scripts]
copyboard = "copyboard.__main__:main"
[dependency-groups]
dev = [
"ruff>=0.6",
"mypy>=1.11",
"pytest>=8.0",
]
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.hatch.build.targets.wheel]
packages = ["copyboard"]
[tool.ruff]
target-version = "py310"
line-length = 100
[tool.ruff.lint]
select = ["E", "F", "I", "UP", "B", "SIM", "C4", "RUF"]
[tool.mypy]
python_version = "3.10"
disallow_untyped_defs = true
disallow_incomplete_defs = true
check_untyped_defs = true
warn_unused_ignores = true
warn_redundant_casts = true
no_implicit_optional = true
files = ["copyboard", "tests"]
[[tool.mypy.overrides]]
module = ["PySide6.*", "pynput.*"]
ignore_missing_imports = true
[tool.pytest.ini_options]
testpaths = ["tests"]