From fcb9e1bb7250d653b889c30491b02d55a2dbb3e8 Mon Sep 17 00:00:00 2001 From: Andreas Kloeckner Date: Thu, 14 Mar 2013 14:36:34 -0400 Subject: [PATCH] Build/dist fixes. --- MANIFEST.in | 4 ++-- setup.py | 10 +++++++++- 2 files changed, 11 insertions(+), 3 deletions(-) diff --git a/MANIFEST.in b/MANIFEST.in index 387a54cb..b30c302e 100644 --- a/MANIFEST.in +++ b/MANIFEST.in @@ -1,5 +1,5 @@ -include src/cl/*.h -include src/cl/*.cl +include pyopencl/cl/*.h +include pyopencl/cl/*.cl include src/wrapper/*.hpp include src/wrapper/*.cpp diff --git a/setup.py b/setup.py index 00438f1e..aed7503c 100644 --- a/setup.py +++ b/setup.py @@ -178,7 +178,14 @@ def main(): 'Natural Language :: English', 'Programming Language :: C++', 'Programming Language :: Python', + 'Programming Language :: Python :: 2', + 'Programming Language :: Python :: 2.4', + 'Programming Language :: Python :: 2.5', + 'Programming Language :: Python :: 2.6', + 'Programming Language :: Python :: 2.7', 'Programming Language :: Python :: 3', + 'Programming Language :: Python :: 3.2', + 'Programming Language :: Python :: 3.3', 'Topic :: Scientific/Engineering', 'Topic :: Scientific/Engineering :: Mathematics', 'Topic :: Scientific/Engineering :: Physics', @@ -228,7 +235,8 @@ def main(): }, # 2to3 invocation - cmdclass={'build_py': build_py}) + cmdclass={'build_py': build_py}, + zip_safe=False) -- GitLab