-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
78 lines (70 loc) · 2.39 KB
/
Copy pathpyproject.toml
File metadata and controls
78 lines (70 loc) · 2.39 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
[project]
name = "devcenter-suite"
version = "1.0.0"
description = "Entwickler-Zentrale: Build, Analyse, Sync und AI-Assistent"
authors = [{ name = "Lukas Geiger", email = "lukasgeiger@googlemail.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.2.0,<13.0.0",
"anthropic>=0.18.0,<1.0.0",
"keyring>=23.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"
"Parent Organization" = "https://github.com/dev-bricks"
"Umbrella Ecosystem" = "https://github.com/open-bricks"
[project.optional-dependencies]
dev = ["pytest>=8.0", "ruff>=0.5"]
[tool.pytest.ini_options]
testpaths = ["tests"]
[tool.ruff]
target-version = "py311"
line-length = 120
[tool.ruff.lint]
select = ["E", "F", "W"]
ignore = ["E501", "E402", "E722", "E741", "F841"]