forked from dstufft/django-passwords
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
33 lines (32 loc) · 1.06 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
from setuptools import setup
setup(
name="django-passwords",
version=__import__("passwords").__version__,
author="Donald Stufft",
author_email="donald@e.vilgeni.us",
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 :: 2.6",
"Programming Language :: Python :: 2.7",
"Programming Language :: Python :: 3.4",
"Programming Language :: Python :: 3.5",
"Topic :: Utilities",
"Framework :: Django",
],
)