-
Notifications
You must be signed in to change notification settings - Fork 3
/
setup.py
51 lines (45 loc) · 1.45 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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
# -*- coding: utf-8 -*-
import os
from setuptools import setup
base_dir = os.path.abspath(os.path.dirname(__file__))
with open(os.path.join(base_dir, "VERSION")) as f:
VERSION = f.read()
with open(os.path.join(base_dir, "README.md"), encoding="utf-8") as f:
long_description = f.read()
DESCRIPTION = (
"django-secure-passwords is a package that adds more password validation options as "
"often required in large corporations"
)
setup(
name="django-secure-passwords",
description=DESCRIPTION,
version=VERSION,
long_description=long_description,
long_description_content_type="text/markdown",
install_requires=[
"Django>=2.2",
"django-axes>=5.14.0",
],
python_requires="~=3.6",
packages=[
"securepasswords",
"securepasswords.migrations",
"securepasswords.management",
"securepasswords.management.commands",
],
author="Veit Rückert",
author_email="veit@blueshoe.de",
include_package_data=True,
package_data={"securepasswords": ["locale/*/LC_MESSAGES/*.mo"]},
classifiers=[
"Intended Audience :: Developers",
"Topic :: Software Development",
"Environment :: Web Environment",
"Framework :: Django",
"Framework :: Django :: 2.2",
"Framework :: Django :: 3.0",
"Framework :: Django :: 3.1" "",
"Programming Language :: Python :: 3.8",
"License :: OSI Approved :: MIT License",
],
)