From 1bdb3d09c05e0a5ea756580dbc529bac28f85c8f Mon Sep 17 00:00:00 2001 From: James Ridgway Date: Wed, 23 Dec 2020 12:47:45 +0000 Subject: [PATCH] Correcting packages in setup,py --- setup.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/setup.py b/setup.py index b293814..c088c9f 100644 --- a/setup.py +++ b/setup.py @@ -1,4 +1,4 @@ -from setuptools import setup +from setuptools import setup, find_packages import subprocess @@ -22,6 +22,6 @@ def get_version(): author='James Ridgway', url='https://github.com/jamesridgway/devdeck_core', license='MIT', - packages=['devdeck.core'], + packages=find_packages(), install_requires=install_reqs )