build: Fixed Package List

Now, the packages are automatically retrieved and exported
to the dist archive.

Signed-off-by: Philipp Le <philipp@philipple.de>
Change-Id: Icf297966ab089bbcc44cb227bac6bc50b3fcf42c
diff --git a/setup.py b/setup.py
index 2aaa6a2..07e7c93 100644
--- a/setup.py
+++ b/setup.py
@@ -6,7 +6,7 @@
 #  License, v. 2.0. If a copy of the MPL was not distributed with this
 #  file, You can obtain one at https://mozilla.org/MPL/2.0/.
 
-from setuptools import setup
+from setuptools import setup, find_packages
 
 setup(
     name='dcs-interactive',
@@ -15,7 +15,7 @@
     long_description=open('README.md').read(),
     author='Philipp Le',
     author_email='philipp@philipple.de',
-    packages=['dcs'],
+    packages=find_packages(),
     entry_points={
         'console_scripts': [
             'dcs-interactive=dcs.main:main'