-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
47 lines (43 loc) · 1.02 KB
/
pyproject.toml
File metadata and controls
47 lines (43 loc) · 1.02 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
[build-system]
requires = ["flit_core >=3.4"]
build-backend = "flit_core.buildapi"
[project]
name = "pyqt_code_editor"
authors = [
{name = "Sebastiaan Mathôt", email = "s.mathot@cogsci.nl"}
]
readme = "readme.md"
license = {file = "COPYING"}
requires-python = ">=3.10"
dynamic = ["version", "description"]
dependencies = [
"chardet",
"detect-indent",
"jedi",
"httpx<0.29.0",
"mistralai",
"opensesame-extension-sigmund",
"pathspec",
"psutil",
"pygments",
"qtawesome",
"qtpy",
"pyqt6",
"qtconsole",
"tree-sitter",
"tree-sitter-javascript",
"tree-sitter-json",
"tree-sitter-html",
"tree-sitter-python",
"tree-sitter-toml",
"tree-sitter-yaml",
"ruff"
]
keywords = ["code editor", "pyqt", "ide"]
[tool.flit.sdist]
exclude = ["doc-pelican", "testcases", ".github"]
[project.urls]
Source = "https://github.com/open-cogsci/sigmund-analyst"
[project.scripts]
sigmund-analyst = "pyqt_code_editor.app:launch_app"
pyqt-code-editor = "pyqt_code_editor.app:launch_app"