From a6d87d0a70a6f0675260ce36132ce5d94c0ce2eb Mon Sep 17 00:00:00 2001
From: Andreas Kloeckner <inform@tiker.net>
Date: Fri, 28 Nov 2014 14:04:00 -0600
Subject: [PATCH] Use find_packages

---
 setup.py | 8 ++------
 1 file changed, 2 insertions(+), 6 deletions(-)

diff --git a/setup.py b/setup.py
index ba7976c..1dabc53 100644
--- a/setup.py
+++ b/setup.py
@@ -1,7 +1,7 @@
 #!/usr/bin/env python
 # -*- coding: latin-1 -*-
 
-from setuptools import setup
+from setuptools import setup, find_packages
 
 ver_dic = {}
 version_file = open("pymbolic/version.py")
@@ -40,11 +40,7 @@ setup(name="pymbolic",
       license="MIT",
       url="http://mathema.tician.de/software/pymbolic",
 
-      packages=[
-          "pymbolic",
-          "pymbolic.mapper",
-          "pymbolic.geometric_algebra",
-          ],
+      packages=find_packages(),
       install_requires=[
           "pytools>=2",
           "pytest>=2.3",
-- 
GitLab