2022-02-12 00:06:16 +00:00
|
|
|
#!/usr/bin/env python3
|
2020-09-16 21:13:41 +00:00
|
|
|
|
|
|
|
# Setup script (in the sdist or in tools/setup_main.py in the repository)
|
|
|
|
|
|
|
|
from setuptools import setup
|
|
|
|
|
|
|
|
cmdclass = {}
|
|
|
|
$extra_cmd
|
|
|
|
|
|
|
|
setup(
|
|
|
|
name="pybind11",
|
|
|
|
version="$version",
|
|
|
|
download_url='https://github.com/pybind/pybind11/tarball/v$version',
|
|
|
|
packages=[
|
|
|
|
"pybind11",
|
|
|
|
"pybind11.include.pybind11",
|
|
|
|
"pybind11.include.pybind11.detail",
|
2021-07-08 16:02:48 +00:00
|
|
|
"pybind11.include.pybind11.stl",
|
2020-09-16 21:13:41 +00:00
|
|
|
"pybind11.share.cmake.pybind11",
|
|
|
|
],
|
|
|
|
package_data={
|
2022-02-11 02:28:08 +00:00
|
|
|
"pybind11": ["py.typed"],
|
2020-09-16 21:13:41 +00:00
|
|
|
"pybind11.include.pybind11": ["*.h"],
|
|
|
|
"pybind11.include.pybind11.detail": ["*.h"],
|
2021-07-08 16:02:48 +00:00
|
|
|
"pybind11.include.pybind11.stl": ["*.h"],
|
2020-09-16 21:13:41 +00:00
|
|
|
"pybind11.share.cmake.pybind11": ["*.cmake"],
|
|
|
|
},
|
|
|
|
extras_require={
|
|
|
|
"global": ["pybind11_global==$version"]
|
|
|
|
},
|
|
|
|
entry_points={
|
|
|
|
"console_scripts": [
|
|
|
|
"pybind11-config = pybind11.__main__:main",
|
2021-07-15 19:01:29 +00:00
|
|
|
],
|
|
|
|
"pipx.run": [
|
|
|
|
"pybind11 = pybind11.__main__:main",
|
2020-09-16 21:13:41 +00:00
|
|
|
]
|
|
|
|
},
|
|
|
|
cmdclass=cmdclass
|
|
|
|
)
|