-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathsetup.py
More file actions
executable file
·51 lines (46 loc) · 1.42 KB
/
setup.py
File metadata and controls
executable file
·51 lines (46 loc) · 1.42 KB
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
# third party modules
from setuptools import find_packages
from setuptools import setup
install_requires = [
"django-jsonfield-backport",
"minibelt",
"python-dateutil",
"pytz",
]
long_description = """package to tune django password authentification
It spans a rather wide range of python and django versions and supports:
- temporary lockout after too many bad logins.
- max life time for passwords
""",
setup(
name="django-pwdtk",
version="2.0.4",
description="package to tune django password authentification",
# long_description=long_description,
# long_description_content_type="text/x-rst",
classifiers=[
"Development Status :: 5 - Production/Stable",
],
keywords="django authentification password",
url="https://github.com/mhcomm/django-pwdtk",
author="MHComm",
author_email="info@mhcomm.fr",
license="MIT",
packages=find_packages(),
scripts=[],
entry_points={
"console_scripts": [
]
},
project_urls={
"Documentation": "https://github.com/mhcomm/django-pwdtk",
"Source": "https://github.com/mhcomm/django-pwdtk",
"SayThanks": "https://github.com/mhcomm",
"Funding": "https://donate.pypi.org",
"Tracker": "https://github.com/mhcomm/django-pwdtk/issues",
},
# TODO in the near future
# python_requires=">=3.6, <4",
python_requires=">=3.7, <4",
include_package_data=True,
)