Skip to content

Commit

Permalink
Adjust package finding
Browse files Browse the repository at this point in the history
  • Loading branch information
ArmaanT committed Dec 2, 2019
1 parent b40df2a commit 3191c1a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions 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


Expand All @@ -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')
Expand Down

0 comments on commit 3191c1a

Please sign in to comment.