From a1aa69ed0a2ba73a16cbffca4f7712787295add9 Mon Sep 17 00:00:00 2001 From: Sharad Heft Date: Wed, 13 Dec 2017 18:31:38 +0100 Subject: [PATCH] Make sure the package includes migrations. --- setup.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/setup.py b/setup.py index 6aa6e6a..13d4cc8 100644 --- a/setup.py +++ b/setup.py @@ -1,4 +1,4 @@ -from setuptools import setup +from setuptools import setup, find_packages setup( name='test_oauth2_django', @@ -6,6 +6,6 @@ setup( description='A basic library for Django apps to use TEST Alliance OAuth2.', url='https://git.pleaseignore.com/sharad/test_oauth2_django', author='Sharad Heft', - packages=['test_oauth'], + packages=find_packages(), install_requires=['requests-oauthlib'] ) -- GitLab