diff --git a/setup.py b/setup.py index 47ed28b..9b2ae3f 100644 --- a/setup.py +++ b/setup.py @@ -1,7 +1,7 @@ import os import sys -from setuptools import setup +from setuptools import find_packages, setup from setuptools.command.install import install @@ -26,7 +26,7 @@ def run(self): setup( name='django-labs-accounts', version=VERSION, - packages=['accounts'], + packages=find_packages(exclude=['tests']), url='https://github.com/pennlabs/django-labs-accounts', project_urls={ 'Changelog': ('https://github.com/pennlabs/django-labs-accounts/blob/master/CHANGELOG.md')