-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
82 lines (76 loc) · 2.21 KB
/
Copy pathpyproject.toml
File metadata and controls
82 lines (76 loc) · 2.21 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
76
77
78
79
80
81
82
[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"
[project]
name = "CodeBox"
version = "0.1.2"
description = "Lightweight local PySide6 desktop code editor with LSP diagnostics, tabs, project tree, and integrated terminal"
readme = "README.md"
requires-python = ">=3.10"
license = { text = "MIT" }
authors = [
{ name = "dev-bricks Maintainers" }
]
keywords = [
"pyside6",
"code-editor",
"desktop-ide",
"local-first",
"lsp",
"terminal",
"python",
"dev-tools"
]
classifiers = [
"Development Status :: 4 - Beta",
"Environment :: X11 Applications :: Qt",
"Environment :: Win32 (MS Windows)",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Operating System :: Microsoft :: Windows",
"Operating System :: POSIX :: Linux",
"Operating System :: MacOS",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Topic :: Desktop Environment",
"Topic :: Software Development :: Code Editors",
"Topic :: Software Development :: Integrated Development Environments (IDE)",
"Topic :: Utilities"
]
dependencies = [
"PySide6>=6.5.0",
]
[project.optional-dependencies]
lsp = [
"python-lsp-server[all]>=1.7.0",
]
remote = [
"paramiko>=3.0.0",
]
test = [
"pytest>=7.0.0",
]
[project.urls]
Homepage = "https://github.com/dev-bricks/CodeBox"
Documentation = "https://github.com/dev-bricks/CodeBox#readme"
Repository = "https://github.com/dev-bricks/CodeBox.git"
Issues = "https://github.com/dev-bricks/CodeBox/issues"
Changelog = "https://github.com/dev-bricks/CodeBox/blob/main/CHANGELOG.md"
Security = "https://github.com/dev-bricks/CodeBox/blob/main/SECURITY.md"
"Parent Org" = "https://github.com/dev-bricks"
"Umbrella Ecosystem" = "https://github.com/open-bricks"
[tool.pytest.ini_options]
minversion = "7.0"
testpaths = ["tests"]
pythonpath = ["."]
addopts = "-ra"
[tool.ruff]
line-length = 100
target-version = "py310"
[tool.ruff.lint]
select = ["E", "F", "W"]
ignore = ["E402", "E501"]