|
| 1 | +[build-system] |
| 2 | +requires = ["setuptools>=61.0"] |
| 3 | +build-backend = "setuptools.build_meta" |
| 4 | + |
| 5 | +[project] |
| 6 | +name = "CodeBox" |
| 7 | +version = "0.1.0" |
| 8 | +description = "Lightweight local PySide6 desktop code editor with LSP diagnostics, tabs, project tree, and integrated terminal" |
| 9 | +readme = "README.md" |
| 10 | +requires-python = ">=3.10" |
| 11 | +license = { text = "MIT" } |
| 12 | +authors = [ |
| 13 | + { name = "dev-bricks Maintainers" } |
| 14 | +] |
| 15 | +keywords = [ |
| 16 | + "pyside6", |
| 17 | + "code-editor", |
| 18 | + "desktop-ide", |
| 19 | + "local-first", |
| 20 | + "lsp", |
| 21 | + "terminal", |
| 22 | + "python", |
| 23 | + "dev-tools" |
| 24 | +] |
| 25 | +classifiers = [ |
| 26 | + "Development Status :: 4 - Beta", |
| 27 | + "Environment :: X11 Applications :: Qt", |
| 28 | + "Environment :: Win32 (MS Windows)", |
| 29 | + "Intended Audience :: Developers", |
| 30 | + "License :: OSI Approved :: MIT License", |
| 31 | + "Programming Language :: Python :: 3", |
| 32 | + "Programming Language :: Python :: 3.10", |
| 33 | + "Programming Language :: Python :: 3.11", |
| 34 | + "Programming Language :: Python :: 3.12", |
| 35 | + "Topic :: Software Development :: Code Editors", |
| 36 | + "Topic :: Software Development :: Integrated Development Environments (IDE)" |
| 37 | +] |
| 38 | +dependencies = [ |
| 39 | + "PySide6>=6.5.0", |
| 40 | +] |
| 41 | + |
| 42 | +[project.optional-dependencies] |
| 43 | +lsp = [ |
| 44 | + "python-lsp-server[all]>=1.7.0", |
| 45 | +] |
| 46 | +remote = [ |
| 47 | + "paramiko>=3.0.0", |
| 48 | +] |
| 49 | +test = [ |
| 50 | + "pytest>=7.0.0", |
| 51 | +] |
| 52 | + |
| 53 | +[project.urls] |
| 54 | +Homepage = "https://github.com/dev-bricks/CodeBox" |
| 55 | +Documentation = "https://github.com/dev-bricks/CodeBox#readme" |
| 56 | +Repository = "https://github.com/dev-bricks/CodeBox.git" |
| 57 | +Issues = "https://github.com/dev-bricks/CodeBox/issues" |
| 58 | + |
| 59 | +[tool.pytest.ini_options] |
| 60 | +minversion = "7.0" |
| 61 | +testpaths = ["tests"] |
| 62 | +pythonpath = ["."] |
| 63 | +addopts = "-ra" |
0 commit comments