Skip to content
Open
Changes from 3 commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 3 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,9 @@ def read(*rnames):
url="https://github.com/IdentityPython/djangosaml2",
download_url="https://pypi.org/project/djangosaml2/",
license="Apache 2.0",
packages=find_packages(exclude=["tests", "tests.*"]),
packages=find_packages(exclude=["tests", "tests.*",
"djangosaml2.tests", "djangosaml2.tests.*",
"docs", "docs.*"]),
include_package_data=True,
zip_safe=False,
install_requires=["defusedxml>=0.4.1", "Django>=4.2", "pysaml2>=6.5.1"],
Expand Down
Loading