-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
67 lines (55 loc) · 1.5 KB
/
pyproject.toml
File metadata and controls
67 lines (55 loc) · 1.5 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
# ============================================================================
# NEXUS - DESKTOP APPLICATION
# ============================================================================
# This pyproject.toml follows RazorBackRoar workspace standards
# Last Updated: 2026-01-28
# Python Version: 3.13.x (STRICT LOCK - never upgrade to 3.14+)
# ============================================================================
[build-system]
requires = ["setuptools>=70", "wheel"]
build-backend = "setuptools.build_meta"
[tool.setuptools.packages.find]
where = ["src"]
include = ["nexus*"]
[project]
name = "nexus"
version = "3.12.9"
description = "Nexus desktop bookmark and URL manager"
requires-python = "==3.13.*"
# WHY: Python 3.13.x is locked per IDE_CONTEXT.md requirements
dependencies = [
"PySide6>=6.6.0",
"Pillow>=10.0.0",
"razorcore",
]
[tool.pytest.ini_options]
pythonpath = ["src"]
testpaths = ["tests"]
[tool.coverage.run]
branch = true
source = ["nexus"]
[tool.coverage.report]
show_missing = true
skip_covered = true
[tool.ty.src]
exclude = [
".agent/**",
".shared/**",
]
[tool.ty.analysis]
allowed-unresolved-imports = ["razorcore.threading"]
[tool.ty.environment]
extra-paths = [
"src",
"/Users/home/Library/Python/3.13/lib/python/site-packages",
"/opt/homebrew/lib/python3.13/site-packages",
]
[dependency-groups]
dev = [
"pyinstaller>=6.0",
"pytest>=9.0.2",
"ruff>=0.15.4",
"ty>=0.0.20",
]
[tool.uv.sources]
razorcore = { path = "../.razorcore", editable = true }