-
Notifications
You must be signed in to change notification settings - Fork 1
/
pyproject.toml
38 lines (32 loc) · 1020 Bytes
/
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
[build-system]
requires = [
"setuptools>=42",
"pybind11>=2.10.0",
]
build-backend = "setuptools.build_meta"
[project]
name = "pylibclang"
description = "A fully featured & always updated python binding for libclang."
readme = "README.md"
keywords = ["pybind11", "libclang", "python"]
license = { text = "MIT" }
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Topic :: Software Development :: Compilers"
]
dynamic = ["version"]
[project.urls]
Homepage = "https://github.com/edimetia3d/pylibclang"
Documentation = "https://github.com/edimetia3d/pylibclang"
Repository = "https://github.com/edimetia3d/pylibclang"
Changelog = "https://github.com/edimetia3d/pylibclang/releases"
[tool.setuptools.dynamic]
version = { attr = "pylibclang.__VERSION__" }
[tool.setuptools]
zip-safe = false
include-package-data = true
[tool.setuptools.packages.find]
include = ["pylibclang*"]