-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpyproject.toml
73 lines (62 loc) · 1.83 KB
/
pyproject.toml
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
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "codexgd"
description = "A configurable and extendable Godot style analyzer."
readme = "README.md"
requires-python = ">=3.8"
license = {file = "LICENSE"}
authors = [{ name="HolonProduction", email="[email protected]" }]
keywords = ["lint", "godot", "gdscript", "style", "analyzer"]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"Programming Language :: Python",
"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",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Topic :: Software Development :: Quality Assurance",
]
dynamic = ["version"]
dependencies = [
"typing-extensions ~=4.5",
"pyyaml ~=6.0",
"docopt-ng ~=0.8.1",
"regex",
"gdtoolkit@git+https://github.com/Scony/godot-gdscript-toolkit.git",
"lark ~=1.1.5",
]
[project.urls]
"Homepage" = "https://github.com/holonproduction/codexgd"
"Bug Tracker" = "https://github.com/holonproduction/codexgd/issues"
[project.scripts]
codexgd = "codexgd.__main__:main"
[tool.hatch.metadata]
allow-direct-references = true
[tool.hatch.version]
path = "codexgd/__about__.py"
[tool.hatch.build]
packages = ["codexgd"]
[tool.hatch.envs.default]
dependencies = [
"pylint ~=2.16",
"black ~=23.1",
]
[tool.hatch.envs.default.scripts]
test = "hatch run test:all"
[tool.hatch.envs.test]
dependencies = [
"pytest ~=7.2",
"black ~=23.1",
"pylint ~=2.16",
]
[tool.hatch.envs.test.scripts]
all = ["pytest", "lint"]
lint = ["black --check .", "pylint -j0 codexgd/"]
[[tool.hatch.envs.test.matrix]]
python = ["38", "39", "310", "311"]