Skip to content
This repository has been archived by the owner on Mar 22, 2024. It is now read-only.

Commit

Permalink
Fixes pip install not including submodules
Browse files Browse the repository at this point in the history
  • Loading branch information
AngellusMortis committed Nov 26, 2017
1 parent 9dd2d0c commit 133c86b
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -36,21 +36,22 @@
author="Christopher Bailey",
author_email='cbailey@mort.is',
url='https://github.com/AngellusMortis/django_microsoft_auth',
packages=find_packages(include=['microsoft_auth']),
packages=find_packages(include=['microsoft_auth', 'microsoft_auth.*']),
include_package_data=True,
install_requires=requirements,
license="MIT license",
zip_safe=False,
keywords='django_microsoft_auth',
classifiers=[
'Development Status :: 2 - Pre-Alpha',
'Development Status :: 5 - Production/Stable',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Natural Language :: English',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Framework :: Django :: 1.11',
],
test_suite='tests',
tests_require=test_requirements,
Expand Down

0 comments on commit 133c86b

Please sign in to comment.