Warning, /jana2/src/python/externals/pybind11-2.10.3/tools/setup_main.py.in is written in an unsupported language. File is not indexed.
0001 #!/usr/bin/env python3
0002
0003 # Setup script (in the sdist or in tools/setup_main.py in the repository)
0004
0005 from setuptools import setup
0006
0007 cmdclass = {}
0008 $extra_cmd
0009
0010 setup(
0011 name="pybind11",
0012 version="$version",
0013 download_url='https://github.com/pybind/pybind11/tarball/v$version',
0014 packages=[
0015 "pybind11",
0016 "pybind11.include.pybind11",
0017 "pybind11.include.pybind11.detail",
0018 "pybind11.include.pybind11.eigen",
0019 "pybind11.include.pybind11.stl",
0020 "pybind11.share.cmake.pybind11",
0021 "pybind11.share.pkgconfig",
0022 ],
0023 package_data={
0024 "pybind11": ["py.typed"],
0025 "pybind11.include.pybind11": ["*.h"],
0026 "pybind11.include.pybind11.detail": ["*.h"],
0027 "pybind11.include.pybind11.eigen": ["*.h"],
0028 "pybind11.include.pybind11.stl": ["*.h"],
0029 "pybind11.share.cmake.pybind11": ["*.cmake"],
0030 "pybind11.share.pkgconfig": ["*.pc"],
0031 },
0032 extras_require={
0033 "global": ["pybind11_global==$version"]
0034 },
0035 entry_points={
0036 "console_scripts": [
0037 "pybind11-config = pybind11.__main__:main",
0038 ],
0039 "pipx.run": [
0040 "pybind11 = pybind11.__main__:main",
0041 ]
0042 },
0043 cmdclass=cmdclass
0044 )