forked from dstufft/django-passwords
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
30 lines (29 loc) · 935 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
26
27
28
29
30
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",
],
include_package_data=True,
install_requires = [
"Django >= 1.3",
],
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",
],
)