forked from danixeee/textx-gen-vscode
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
102 lines (90 loc) · 2.27 KB
/
pyproject.toml
File metadata and controls
102 lines (90 loc) · 2.27 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
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
[project]
name = "textx-gen-vscode"
version = "0.3.0"
description = "A VS Code extension generator"
authors = [
{name = "Daniel Elero", email = "[email protected]"},
]
maintainers = [
{name = "Daniel Elero", email = "[email protected]"},
{name = "Igor R. Dejanović", email = "[email protected]"},
]
readme = "README.md"
license = {text = "MIT"}
keywords = ["VS Code", "textX", "language", "DSL"]
classifiers = [
"Development Status :: 2 - Pre-Alpha",
"Intended Audience :: Developers",
"Intended Audience :: Information Technology",
"Topic :: Software Development :: Libraries :: Python Modules",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: 3.14",
]
requires-python = ">=3.5"
dependencies = [
"click",
"textx-jinja",
"textx",
"textx-gen-coloring",
]
[project.urls]
Homepage = "https://github.com/textX/textx-gen-vscode/"
Repository = "https://github.com/textX/textx-gen-vscode/"
Changelog = "https://github.com/textX/textx-gen-vscode/blob/master/CHANGELOG.md"
[build-system]
build-backend = "flit_core.buildapi"
requires = ["flit_core >=3.8.0,<4"]
[tool.flit.module]
name = "textx_gen_vscode"
[tool.flit.sdist]
exclude = ["**/.*"]
[dependency-groups]
ci = [
"bandit",
"pytest-azurepipelines",
{include-group = "test"},
]
dev = [
"bandit",
"ruff",
{include-group = "test"},
{include-group = "dbg"},
]
test = [
"coverage",
"pytest",
"pytest-cov"
]
dbg = [
"pudb",
"ipython",
]
[project.entry-points.textx_generators]
vscode_gen = "textx_gen_vscode:vscode_gen"
[tool.ruff]
line-length = 90
indent-width = 4
[tool.ruff.lint]
# https://docs.astral.sh/ruff/linter/#rule-selection
select = [
# pycodestyle
"E",
# Pyflakes
"F",
# pyupgrade
"UP",
# flake8-bugbear
"B",
# flake8-simplify
"SIM",
# isort
"I",
]