-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
85 lines (77 loc) · 2.78 KB
/
Copy pathpyproject.toml
File metadata and controls
85 lines (77 loc) · 2.78 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
83
84
[project]
name = "devcenter-suite"
version = "1.0.3"
description = "Entwickler-Zentrale: Build, Analyse, Sync und AI-Assistent"
authors = [{ name = "Lukas Geiger", email = "support@lukasgeiger.com" }]
requires-python = ">=3.11"
license = { file = "LICENSE" }
readme = "README.md"
keywords = [
"python",
"ide",
"pyside6",
"pyinstaller",
"ast-analysis",
"static-analysis",
"developer-tools",
"local-first",
"zero-egress",
"code-editor",
]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Environment :: Win32 (MS Windows)",
"Environment :: X11 Applications :: Qt",
"Intended Audience :: Developers",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Operating System :: Microsoft :: Windows",
"Operating System :: POSIX :: Linux",
"Operating System :: MacOS",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Topic :: Desktop Environment",
"Topic :: Software Development :: Build Tools",
"Topic :: Software Development :: Code Generators",
"Topic :: Software Development :: Compilers",
"Topic :: Software Development :: Quality Assurance",
"Topic :: Text Editors :: Integrated Development Environments (IDE)",
"Topic :: Utilities",
]
dependencies = [
"PySide6>=6.5.0,<7.0.0",
"pyinstaller>=5.0.0,<7.0.0",
"Pillow>=12.3.0,<13.0.0",
"anthropic>=0.18.0,<1.0.0",
"keyring>=25.0.0,<26.0.0",
"chardet>=5.0.0,<6.0.0",
"ftfy>=6.1.0,<7.0.0",
"pip-licenses>=4.0.0,<5.0.0",
"watchdog>=3.0.0,<5.0.0",
]
[project.urls]
Homepage = "https://github.com/dev-bricks/DevCenter"
Documentation = "https://github.com/dev-bricks/DevCenter#readme"
Repository = "https://github.com/dev-bricks/DevCenter.git"
"Bug Tracker" = "https://github.com/dev-bricks/DevCenter/issues"
Changelog = "https://github.com/dev-bricks/DevCenter/blob/master/CHANGELOG.md"
Security = "https://github.com/dev-bricks/DevCenter/blob/master/SECURITY.md"
"Third-Party Licenses" = "https://github.com/dev-bricks/DevCenter/blob/master/THIRD_PARTY_LICENSES.md"
"Marketing Log" = "https://github.com/dev-bricks/DevCenter/blob/master/MARKETING-LOG.txt"
"LLM Ready" = "https://github.com/dev-bricks/DevCenter/blob/master/llms.txt"
"Parent Organization" = "https://github.com/dev-bricks"
"Umbrella Ecosystem" = "https://github.com/open-bricks"
[project.optional-dependencies]
dev = ["pytest>=9.1.1", "ruff>=0.9.0"]
[tool.pytest.ini_options]
minversion = "7.0"
testpaths = ["tests"]
pythonpath = ["src"]
addopts = "-ra -v"
norecursedirs = [".git", ".pytest_cache", "__pycache__", "build", "dist"]
[tool.ruff]
target-version = "py311"
line-length = 120
[tool.ruff.lint]
select = ["E", "F", "W"]
ignore = ["E501", "E402", "E722", "E741", "F841"]