-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathpyproject.toml
More file actions
41 lines (36 loc) · 1.05 KB
/
pyproject.toml
File metadata and controls
41 lines (36 loc) · 1.05 KB
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
[build-system]
requires = ["scikit-build-core"]
build-backend = "scikit_build_core.build"
[project]
name = "clang"
description = "libclang python bindings"
readme = "README.md"
license = { text = "Apache-2.0 with LLVM exception" }
authors = [
{ name = "LLVM team - pypi upload by Loic Jaquemet" }
]
keywords = ["llvm", "clang", "libclang"]
classifiers = [
"Intended Audience :: Developers",
"License :: OSI Approved :: Apache Software License",
"Development Status :: 5 - Production/Stable",
"Topic :: Software Development :: Compilers",
"Programming Language :: Python :: 3",
]
dynamic = ["version"]
[project.urls]
Homepage = "http://clang.llvm.org/"
Download = "http://llvm.org/releases/download.html"
[dependecy-groups]
dev = ["build", "twine"]
[tool.scikit-build]
wheel.py-api = "py3"
wheel.platlib = false
wheel.license-files = []
[tool.scikit-build.metadata.version]
provider = "scikit_build_core.metadata.regex"
input = "llvm_version.cmake"
regex = '''(?sx)
set\(\s*LLVM_VERSION\s+(?P<version>\d+(?:\.\d+)+)\s*\)
'''
result = "{version}"