-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpyproject.toml
59 lines (51 loc) · 1.24 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
[build-system]
requires = ["setuptools>=64", "setuptools_scm>=8"]
build-backend = "setuptools.build_meta"
[project]
name = "tclint"
dynamic = ["version"]
description = "A CLI utility for linting and analyzing Tcl code."
license = {text = "MIT License"}
authors = [
{name = "Noah Moroze", email = "[email protected]"}
]
readme = "README.md"
requires-python = ">=3.9"
dependencies = [
"ply==3.11",
"schema==0.7.5",
"tomli~=2.0.1; python_version < '3.11'",
"pathspec==0.11.2",
"importlib-metadata==6.8.0",
"pygls==1.3.1",
]
[project.optional-dependencies]
dev = [
"black",
"flake8",
"pytest",
"pytest-timeout",
"codespell",
"pytest-lsp",
]
[project.scripts]
tclint = "tclint.tclint:main"
tclint-plugins = "tclint.cli.tclint_plugins:main"
tclfmt = "tclint.cli.tclfmt:main"
tclsp = "tclint.cli.tclsp:main"
[project.entry-points."tclint.plugins"]
openroad = "tclint.plugins.openroad.openroad"
[tool.pytest.ini_options]
testpaths = ["tests"]
timeout = 10
# Silences a warning from pytest-lsp
asyncio_mode = "auto"
asyncio_default_fixture_loop_scope = "function"
[tool.setuptools_scm]
version_file = "src/tclint/_version.py"
[[tool.mypy.overrides]]
module = [
"ply.*",
"schema",
]
ignore_missing_imports = true