-
Notifications
You must be signed in to change notification settings - Fork 7
/
pyproject.toml
37 lines (32 loc) · 1.03 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
[build-system]
requires = ["setuptools>=64", "setuptools-scm>=8"]
build-backend = "setuptools.build_meta"
[project]
name = "clangd-tidy"
dynamic = ["version"]
dependencies = ["tqdm"]
requires-python = ">=3.8"
authors = [{ name = "lljbash", email = "[email protected]" }]
description = "A faster alternative to clang-tidy"
readme = "README.md"
keywords = ["clang-tidy", "clangd", "static-analysis", "cpp"]
classifiers = [
"Development Status :: 4 - Beta",
"Environment :: Console",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Operating System :: POSIX",
"Programming Language :: Python :: 3 :: Only",
"Topic :: Software Development :: Quality Assurance",
]
[project.scripts]
clangd-tidy = "clangd_tidy:main_cli"
[project.urls]
"Homepage" = "https://github.com/lljbash/clangd-tidy"
"Bug Tracker" = "https://github.com/lljbash/clangd-tidy/issues"
[tool.setuptools_scm]
write_to = "clangd_tidy/_dist_ver.py"
[tool.black]
include = '\.pyi?$'
extend-exclude = 'pylspclient'
required-version = "24"