forked from Therapoid/django-password-policies
-
Notifications
You must be signed in to change notification settings - Fork 21
/
setup.py
35 lines (33 loc) · 1.27 KB
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
from setuptools import find_packages, setup
install_requires = ["django"]
setup(
name="django-password-policies-iplweb",
version=__import__("password_policies").__version__,
description="A Django application to implent password policies.",
long_description="""\
django-password-policies is an application for the Django framework that
provides unicode-aware password policies on password changes and resets
and a mechanism to force password changes.
""",
author="Michal Pasternak",
author_email="[email protected]",
url="https://github.com/iplweb/django-password-policies-iplweb",
include_package_data=True,
packages=find_packages(),
zip_safe=False,
classifiers=[
"Development Status :: 3 - Alpha",
"Environment :: Web Environment",
"Intended Audience :: Developers",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Framework :: Django",
"License :: OSI Approved :: BSD License",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: Utilities",
],
install_requires=install_requires,
)