-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
75 lines (65 loc) · 1.44 KB
/
Copy pathpyproject.toml
File metadata and controls
75 lines (65 loc) · 1.44 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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
[project]
name = "portkeydrop"
version = "0.5.1"
description = "A keyboard-first file transfer client for SFTP, FTP, FTPS, and WebDAV"
requires-python = ">=3.11,<3.13"
dependencies = [
"asyncssh>=2.14",
"puttykeys",
"keyring>=25.0",
"platform-utils>=1.6.0",
"sound_lib @ git+https://github.com/samtupy/sound_lib_macos_fixes.git",
"wxPython>=4.2",
"prismatoid",
"webdavclient3>=3.14",
]
[project.optional-dependencies]
webdav = [
"webdavclient3>=3.14",
]
build = [
"nuitka>=4.0.8",
"pillow",
]
dev = [
"pytest>=9.0",
"pytest-cov>=7.0",
"pytest-xdist>=3.0",
"diff-cover>=9.0.0",
"ruff>=0.15.0",
]
[project.scripts]
portkeydrop = "portkeydrop.main:main"
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.hatch.build.targets.wheel]
packages = ["src/portkeydrop"]
artifacts = [
"src/portkeydrop/default_soundpacks/**/*.json",
"src/portkeydrop/default_soundpacks/**/*.ogg",
]
[tool.hatch.metadata]
allow-direct-references = true
[tool.ruff]
target-version = "py311"
line-length = 100
[tool.pytest.ini_options]
testpaths = ["tests"]
pythonpath = ["src"]
[tool.coverage.run]
source = ["src/portkeydrop"]
[tool.coverage.report]
exclude_lines = [
"pragma: no cover",
"if TYPE_CHECKING:",
"if __name__ == .__main__.:",
]
[dependency-groups]
dev = [
"pytest>=9.0",
"pytest-cov>=7.0",
"pytest-xdist>=3.0",
"ruff>=0.15.0",
"diff-cover>=9.0.0",
]