-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpyproject.toml
45 lines (39 loc) · 1.32 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
[build-system]
requires = [
"setuptools",
"setuptools-scm",
"wheel",
]
build-backend = "setuptools.build_meta"
[project]
name = "pybind11_weaver"
description = "A fully customizable pybind11 generator to help generate code for exsiting c/c++ library."
readme = "README.md"
keywords = ["pybind11", "generator", "codegen", "gen", ]
license = { text = "MIT" }
classifiers = [
"Development Status :: 1 - Planning",
"Environment :: Console",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Programming Language :: C++",
"Topic :: Software Development :: Code Generators",
"Topic :: Software Development :: Compilers"
]
dynamic = ["version", "dependencies"]
[project.urls]
Homepage = "https://github.com/edimetia3d/pybind11_weaver"
Documentation = "https://github.com/edimetia3d/pybind11_weaver"
Repository = "https://github.com/edimetia3d/pybind11_weaver"
Changelog = "https://github.com/edimetia3d/pybind11_weaver/releases"
[tool.setuptools.dynamic]
version = { attr = "pybind11_weaver.__VERSION__" }
dependencies = { file = ["requirements.txt"] }
[tool.setuptools]
zip-safe = false
include-package-data = true
[tool.setuptools.packages.find]
include = ["pybind11_weaver*"]
[project.scripts]
pybind11-weaver = "pybind11_weaver.main:main"