From 9f13a30c6e88ec7987a624d6e6186445c509b396 Mon Sep 17 00:00:00 2001 From: Alessandro Bacchini Date: Thu, 1 Dec 2016 15:22:17 +0100 Subject: [PATCH] Add missing C++ headers. Sort headers (#540) --- setup.py | 13 ++++++++----- 1 file changed, 8 insertions(+), 5 deletions(-) diff --git a/setup.py b/setup.py index 425e6c57a..e9bc3c387 100644 --- a/setup.py +++ b/setup.py @@ -18,18 +18,21 @@ setup( headers=[ 'include/pybind11/attr.h', 'include/pybind11/cast.h', + 'include/pybind11/chrono.h', + 'include/pybind11/common.h', 'include/pybind11/complex.h', 'include/pybind11/descr.h', 'include/pybind11/eigen.h', + 'include/pybind11/eval.h', + 'include/pybind11/functional.h', 'include/pybind11/numpy.h', + 'include/pybind11/operators.h', + 'include/pybind11/options.h', 'include/pybind11/pybind11.h', + 'include/pybind11/pytypes.h', 'include/pybind11/stl.h', 'include/pybind11/stl_bind.h', - 'include/pybind11/common.h', - 'include/pybind11/functional.h', - 'include/pybind11/operators.h', - 'include/pybind11/pytypes.h', - 'include/pybind11/typeid.h' + 'include/pybind11/typeid.h', ], classifiers=[ 'Development Status :: 5 - Production/Stable',