-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
52 lines (48 loc) · 1.69 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
[build-system]
requires = ["maturin>=1.4,<2.0"]
build-backend = "maturin"
[project]
name = "cpp-linter"
description = "Run clang-format and clang-tidy on a batch of files."
readme = "bindings/python/README.md"
keywords = ["clang", "clang-tools", "linter", "clang-tidy", "clang-format"]
license = {text = "MIT License"}
requires-python = ">=3.9"
authors = [
{ name = "Brendan Doherty", email = "[email protected]" },
{ name = "Xianpeng Shen", email = "[email protected]" },
]
classifiers = [
# https://pypi.org/pypi?%3Aaction=list_classifiers
"Development Status :: 5 - Production/Stable",
"License :: OSI Approved :: MIT License",
"Intended Audience :: Developers",
"Intended Audience :: System Administrators",
"Intended Audience :: Information Technology",
"Natural Language :: English",
"Operating System :: Microsoft :: Windows",
"Operating System :: POSIX :: Linux",
"Operating System :: MacOS",
"Programming Language :: Python :: 3",
"Topic :: Software Development :: Build Tools",
"Programming Language :: Rust",
"Programming Language :: Python :: Implementation :: CPython",
"Programming Language :: Python :: Implementation :: PyPy",
]
dynamic = ["version"]
[project.scripts]
cpp-linter = "cpp_linter:main"
[project.urls]
source = "https://github.com/cpp-linter/cpp-linter-rs"
tracker = "https://github.com/cpp-linter/cpp-linter-rs/issues"
[tool.maturin]
features = ["pyo3/extension-module"]
include = [
{path = "cpp_linter.pyi", format = "sdist"},
]
exclude = [
{path = "**/tests/**", format="sdist"},
{path = "**/examples/**", format="sdist"},
{path = "**/docs/**", format="sdist"},
]
manifest-path = "bindings/python/Cargo.toml"