From 7b23188602ea84abb1b5b555cb9d0950083c56d9 Mon Sep 17 00:00:00 2001 From: Anish Athalye Date: Fri, 1 Jun 2018 23:08:12 -0400 Subject: [PATCH] Fix missing packages in PyPI distribution --- setup.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/setup.py b/setup.py index 350bc5b..975deb3 100644 --- a/setup.py +++ b/setup.py @@ -1,4 +1,4 @@ -from setuptools import setup +from setuptools import setup, find_packages from codecs import open # For a consistent encoding from os import path import re @@ -65,7 +65,7 @@ setup( keywords='dotfiles', - packages=['dotbot'], + packages=find_packages(), setup_requires=[ 'setuptools>=38.6.0',