Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
What's new
7
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Open sidebar
python-libs
passlib
Commits
318c362bd51d
Commit
9ffe6e93
authored
Nov 22, 2016
by
Eli Collins
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
docs: assorted cleanups, silence some doc build warnings
--HG-- branch : stable
parent
b4a0cb3092ba
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
8 additions
and
3 deletions
+8
-3
README
README
+1
-1
docs/conf.py
docs/conf.py
+5
-0
setup.py
setup.py
+2
-2
No files found.
README
View file @
318c362b
...
...
@@ -15,7 +15,7 @@ providing full-strength password hashing for multi-user application.
* See the `documentation <https://passlib.readthedocs.io>`_
for details, installation instructions, and examples.
* See the `changelog <https://passlib.readthedocs.io/en/stable/history
.html
>`_
* See the `changelog <https://passlib.readthedocs.io/en/stable/history>`_
for a description of what's new in Passlib.
* Visit `PyPI <https://pypi.python.org/pypi/passlib>`_
...
...
docs/conf.py
View file @
318c362b
...
...
@@ -20,6 +20,11 @@ import sys, os
# make sure root of source dir in sys.path
sys
.
path
.
insert
(
0
,
os
.
path
.
abspath
(
os
.
pardir
))
# ignore warnings when documenting deprecated passlib methods
import
warnings
warnings
.
filterwarnings
(
"ignore"
,
category
=
DeprecationWarning
,
module
=
"passlib[.].*"
)
#=============================================================================
# imports
#=============================================================================
...
...
setup.py
View file @
318c362b
...
...
@@ -88,7 +88,7 @@ providing full-strength password hashing for multi-user applications.
* See the `homepage <https://bitbucket.org/ecollins/passlib>`_
for the latest news and more information.
* See the `changelog <https://passlib.readthedocs.io/en/stable/history
.html
>`_
* See the `changelog <https://passlib.readthedocs.io/en/stable/history>`_
for a description of what's new in Passlib.
All releases are signed with the gpg key
...
...
@@ -98,7 +98,7 @@ All releases are signed with the gpg key
KEYWORDS
=
"""
\
password secret hash security
crypt md5-crypt
sha256-crypt sha512-crypt
pbkdf2 argon2 scrypt bcrypt
sha256-crypt sha512-crypt pbkdf2 argon2 scrypt bcrypt
apache htpasswd htdigest
totp 2fa
"""
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment