diff options
author | Torsten Marek <shlomme@gmail.com> | 2014-11-09 00:25:10 +0100 |
---|---|---|
committer | Torsten Marek <shlomme@gmail.com> | 2014-11-09 00:25:10 +0100 |
commit | 39092fc9ddd63abc462532136f28b169331abb0f (patch) | |
tree | 90a098ac6964fe706e242c8fba4006b03bde0b77 /setup.py | |
parent | bad2f580838da523eb051cbf0a1f9dddef204f8c (diff) | |
download | astroid-git-39092fc9ddd63abc462532136f28b169331abb0f.tar.gz |
Add missing file.
Diffstat (limited to 'setup.py')
-rw-r--r-- | setup.py | 5 |
1 files changed, 2 insertions, 3 deletions
@@ -18,7 +18,7 @@ # You should have received a copy of the GNU Lesser General Public License along # with astroid. If not, see <http://www.gnu.org/licenses/>. """Setup script for astroid.""" -from setuptools import setup +from setuptools import setup, find_packages pkginfo = 'astroid/__pkginfo__.py' @@ -41,8 +41,7 @@ def install(): url = web, include_package_data = True, install_requires = install_requires, - # find_packages() does not work on drone.io (or maybe inside venv). - packages = ['astroid', 'astroid.tests'], + packages = find_packages(), ) |