forked from dstufft/django-passwords
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
25 lines (24 loc) · 842 Bytes
/
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
from setuptools import setup
setup(
name = "django-passwords",
version = __import__("passwords").__version__,
author = "Donald Stufft",
author_email = "[email protected]",
description = "A Django reusable app that provides validators and a form field that checks the strength of a password",
long_description = open("README.rst").read(),
url = "http://github.com/dstufft/django-passwords/",
license = "BSD",
packages = [
"passwords",
],
classifiers = [
"Development Status :: 4 - Beta",
"Environment :: Web Environment",
"Intended Audience :: Developers",
"License :: OSI Approved :: BSD License",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Topic :: Utilities",
"Framework :: Django",
]
)