-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
52 lines (47 loc) · 1.65 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
[project]
name = "vscode-task-runner"
version = "1.3.5"
description = "Task runner for VS Code tasks.json"
readme = "README.md"
authors = [{ name = "Nathan Vaughn", email = "[email protected]" }]
classifiers = [
"Intended Audience :: Developers",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: Software Development :: Build Tools",
"License :: OSI Approved :: MIT License",
"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",
]
requires-python = ">=3.9"
dependencies = [
"shellingham>=1.5.4",
"pyjson5>=1.6.7",
"dacite>=1.8.1",
"questionary>=2.0.1",
"colorama>=0.4.6",
]
[dependency-groups]
dev = [
"pre-commit>=3.2.0",
"pytest>=7.3.1",
"pytest-mock>=3.10.0",
"pytest-cov>=4.1",
]
[project.urls]
Homepage = "https://github.com/NathanVaughn/vscode-task-runner"
Repository = "https://github.com/NathanVaughn/vscode-task-runner.git"
Issues = "https://github.com/NathanVaughn/vscode-task-runner/issues"
[project.scripts]
vtr = "vscode_task_runner.console:run"
vscode-task-runner = "vscode_task_runner.console:run"
[tool.pyright]
typeCheckingMode = "basic"
venvPath = "."
venv = ".venv"
reportMissingParameterType = true
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"