Add required Python and Django version to setup.py (#419)

This commit is contained in:
Hasan Ramezani 2022-08-18 13:06:33 +02:00 committed by GitHub
parent 174605d650
commit 57423fcb3a
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -27,7 +27,8 @@ setup(
description="Audit log app for Django",
long_description=long_description,
long_description_content_type="text/markdown",
install_requires=["python-dateutil>=2.7.0"],
python_requires=">=3.7",
install_requires=["Django>=3.2", "python-dateutil>=2.7.0"],
zip_safe=False,
classifiers=[
"Programming Language :: Python :: 3",