Andreas Sandberg | c79706f | 2017-02-27 13:17:51 +0000 | [diff] [blame] | 1 | #!/usr/bin/env python |
| 2 | |
| 3 | # Setup script for PyPI; use CMakeFile.txt to build extension modules |
| 4 | |
| 5 | from setuptools import setup |
Jason Lowe-Power | f07d506 | 2017-11-17 17:02:05 -0800 | [diff] [blame] | 6 | from distutils.command.install_headers import install_headers |
Andreas Sandberg | c79706f | 2017-02-27 13:17:51 +0000 | [diff] [blame] | 7 | from pybind11 import __version__ |
Andreas Sandberg | 6914a22 | 2017-05-09 19:22:53 +0100 | [diff] [blame] | 8 | import os |
Andreas Sandberg | c79706f | 2017-02-27 13:17:51 +0000 | [diff] [blame] | 9 | |
Andreas Sandberg | 6914a22 | 2017-05-09 19:22:53 +0100 | [diff] [blame] | 10 | # Prevent installation of pybind11 headers by setting |
| 11 | # PYBIND11_USE_CMAKE. |
| 12 | if os.environ.get('PYBIND11_USE_CMAKE'): |
| 13 | headers = [] |
| 14 | else: |
| 15 | headers = [ |
Jason Lowe-Power | f07d506 | 2017-11-17 17:02:05 -0800 | [diff] [blame] | 16 | 'include/pybind11/detail/class.h', |
| 17 | 'include/pybind11/detail/common.h', |
| 18 | 'include/pybind11/detail/descr.h', |
| 19 | 'include/pybind11/detail/init.h', |
| 20 | 'include/pybind11/detail/internals.h', |
| 21 | 'include/pybind11/detail/typeid.h', |
Andreas Sandberg | c79706f | 2017-02-27 13:17:51 +0000 | [diff] [blame] | 22 | 'include/pybind11/attr.h', |
Jason Lowe-Power | f07d506 | 2017-11-17 17:02:05 -0800 | [diff] [blame] | 23 | 'include/pybind11/buffer_info.h', |
Andreas Sandberg | c79706f | 2017-02-27 13:17:51 +0000 | [diff] [blame] | 24 | 'include/pybind11/cast.h', |
| 25 | 'include/pybind11/chrono.h', |
| 26 | 'include/pybind11/common.h', |
| 27 | 'include/pybind11/complex.h', |
Andreas Sandberg | c79706f | 2017-02-27 13:17:51 +0000 | [diff] [blame] | 28 | 'include/pybind11/eigen.h', |
Jason Lowe-Power | f07d506 | 2017-11-17 17:02:05 -0800 | [diff] [blame] | 29 | 'include/pybind11/embed.h', |
Andreas Sandberg | c79706f | 2017-02-27 13:17:51 +0000 | [diff] [blame] | 30 | 'include/pybind11/eval.h', |
| 31 | 'include/pybind11/functional.h', |
Jason Lowe-Power | f07d506 | 2017-11-17 17:02:05 -0800 | [diff] [blame] | 32 | 'include/pybind11/iostream.h', |
Andreas Sandberg | c79706f | 2017-02-27 13:17:51 +0000 | [diff] [blame] | 33 | 'include/pybind11/numpy.h', |
| 34 | 'include/pybind11/operators.h', |
| 35 | 'include/pybind11/options.h', |
| 36 | 'include/pybind11/pybind11.h', |
| 37 | 'include/pybind11/pytypes.h', |
| 38 | 'include/pybind11/stl.h', |
| 39 | 'include/pybind11/stl_bind.h', |
Andreas Sandberg | 6914a22 | 2017-05-09 19:22:53 +0100 | [diff] [blame] | 40 | ] |
| 41 | |
Jason Lowe-Power | f07d506 | 2017-11-17 17:02:05 -0800 | [diff] [blame] | 42 | |
| 43 | class InstallHeaders(install_headers): |
| 44 | """Use custom header installer because the default one flattens subdirectories""" |
| 45 | def run(self): |
| 46 | if not self.distribution.headers: |
| 47 | return |
| 48 | |
| 49 | for header in self.distribution.headers: |
| 50 | subdir = os.path.dirname(os.path.relpath(header, 'include/pybind11')) |
| 51 | install_dir = os.path.join(self.install_dir, subdir) |
| 52 | self.mkpath(install_dir) |
| 53 | |
| 54 | (out, _) = self.copy_file(header, install_dir) |
| 55 | self.outfiles.append(out) |
| 56 | |
| 57 | |
Andreas Sandberg | 6914a22 | 2017-05-09 19:22:53 +0100 | [diff] [blame] | 58 | setup( |
| 59 | name='pybind11', |
| 60 | version=__version__, |
| 61 | description='Seamless operability between C++11 and Python', |
| 62 | author='Wenzel Jakob', |
| 63 | author_email='wenzel.jakob@epfl.ch', |
| 64 | url='https://github.com/wjakob/pybind11', |
| 65 | download_url='https://github.com/wjakob/pybind11/tarball/v' + __version__, |
| 66 | packages=['pybind11'], |
| 67 | license='BSD', |
| 68 | headers=headers, |
Jason Lowe-Power | f07d506 | 2017-11-17 17:02:05 -0800 | [diff] [blame] | 69 | cmdclass=dict(install_headers=InstallHeaders), |
Andreas Sandberg | c79706f | 2017-02-27 13:17:51 +0000 | [diff] [blame] | 70 | classifiers=[ |
| 71 | 'Development Status :: 5 - Production/Stable', |
| 72 | 'Intended Audience :: Developers', |
| 73 | 'Topic :: Software Development :: Libraries :: Python Modules', |
| 74 | 'Topic :: Utilities', |
| 75 | 'Programming Language :: C++', |
| 76 | 'Programming Language :: Python :: 2.7', |
| 77 | 'Programming Language :: Python :: 3', |
| 78 | 'Programming Language :: Python :: 3.2', |
| 79 | 'Programming Language :: Python :: 3.3', |
| 80 | 'Programming Language :: Python :: 3.4', |
| 81 | 'Programming Language :: Python :: 3.5', |
Andreas Sandberg | 6914a22 | 2017-05-09 19:22:53 +0100 | [diff] [blame] | 82 | 'Programming Language :: Python :: 3.6', |
| 83 | 'License :: OSI Approved :: BSD License' |
Andreas Sandberg | c79706f | 2017-02-27 13:17:51 +0000 | [diff] [blame] | 84 | ], |
| 85 | keywords='C++11, Python bindings', |
Andreas Sandberg | 6914a22 | 2017-05-09 19:22:53 +0100 | [diff] [blame] | 86 | long_description="""pybind11 is a lightweight header-only library that |
| 87 | exposes C++ types in Python and vice versa, mainly to create Python bindings of |
Andreas Sandberg | c79706f | 2017-02-27 13:17:51 +0000 | [diff] [blame] | 88 | existing C++ code. Its goals and syntax are similar to the excellent |
Andreas Sandberg | 6914a22 | 2017-05-09 19:22:53 +0100 | [diff] [blame] | 89 | Boost.Python by David Abrahams: to minimize boilerplate code in traditional |
| 90 | extension modules by inferring type information using compile-time |
Andreas Sandberg | c79706f | 2017-02-27 13:17:51 +0000 | [diff] [blame] | 91 | introspection. |
| 92 | |
| 93 | The main issue with Boost.Python-and the reason for creating such a similar |
| 94 | project-is Boost. Boost is an enormously large and complex suite of utility |
| 95 | libraries that works with almost every C++ compiler in existence. This |
| 96 | compatibility has its cost: arcane template tricks and workarounds are |
| 97 | necessary to support the oldest and buggiest of compiler specimens. Now that |
| 98 | C++11-compatible compilers are widely available, this heavy machinery has |
| 99 | become an excessively large and unnecessary dependency. |
| 100 | |
| 101 | Think of this library as a tiny self-contained version of Boost.Python with |
| 102 | everything stripped away that isn't relevant for binding generation. Without |
Andreas Sandberg | 6914a22 | 2017-05-09 19:22:53 +0100 | [diff] [blame] | 103 | comments, the core header files only require ~4K lines of code and depend on |
| 104 | Python (2.7 or 3.x, or PyPy2.7 >= 5.7) and the C++ standard library. This |
| 105 | compact implementation was possible thanks to some of the new C++11 language |
| 106 | features (specifically: tuples, lambda functions and variadic templates). Since |
| 107 | its creation, this library has grown beyond Boost.Python in many ways, leading |
| 108 | to dramatically simpler binding code in many common situations.""") |