-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
58 lines (50 loc) · 1.28 KB
/
pyproject.toml
File metadata and controls
58 lines (50 loc) · 1.28 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
[build-system]
requires = ["setuptools>=68.0", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "clipsync"
version = "1.0.3"
description = "Cross-platform clipboard sharing over LAN"
readme = "README.md"
license = { text = "MIT" }
requires-python = ">=3.12"
authors = [{ name = "kai3316" }]
keywords = ["clipboard", "sync", "lan", "cross-platform"]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: End Users/Desktop",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3.12",
"Topic :: Utilities",
]
dependencies = [
"zeroconf>=0.132.0",
"cryptography>=42.0.0",
"Pillow>=10.0.0",
"pystray>=0.19.0",
"customtkinter>=5.2.0",
"qrcode>=7.4",
"pyobjc-framework-Cocoa>=10.0; sys_platform == 'darwin'",
]
[project.optional-dependencies]
dev = [
"pytest>=8.0",
"pytest-timeout>=2.0",
"pytest-cov>=5.0",
"ruff>=0.4",
"pyinstaller>=6.0",
]
[project.scripts]
clipsync = "src.main:main"
[tool.ruff]
line-length = 100
target-version = "py312"
[tool.ruff.lint]
select = ["E", "F", "W", "I", "N", "UP", "B", "SIM"]
[tool.ruff.format]
quote-style = "double"
[tool.pytest.ini_options]
testpaths = ["tests"]
timeout = 60
addopts = "-v --tb=short"