Skip to content
GitLab
Menu
Why GitLab
Pricing
Contact Sales
Explore
Why GitLab
Pricing
Contact Sales
Explore
Sign in
Get free trial
Commits on Source (4)
Update description
· 40396a10
Yasha
authored
Nov 09, 2017
40396a10
Update classifiers
· 405d8b5a
Yasha
authored
Nov 09, 2017
405d8b5a
Update CHANGELOG
· 3b77305f
Yasha
authored
Nov 09, 2017
3b77305f
Bump version 0.0.3
· 2ea064f4
Yasha
authored
Nov 09, 2017
2ea064f4
Hide whitespace changes
Inline
Side-by-side
CHANGELOG
View file @
2ea064f4
09 Nov 2017 Yasuhiro Asaka <yasuhiro.asaka@grauwoelfchen.net>
* Bump version v0.0.2
* Bump version v0.0.2, v0.0.3
* Update package description and classifiers
* Enable HSTS Header only for ssl request
* Add test case for X-Forwarded-Proto use
...
...
pyramid_secure_response/__init__.py
View file @
2ea064f4
...
...
@@ -5,7 +5,7 @@ __all__ = (
'
__name__
'
,
# pylint: disable=undefined-all-variable
)
__version__
=
'
0.0.
2
'
__version__
=
'
0.0.
3
'
def
includeme
(
config
):
...
...
setup.py
View file @
2ea064f4
...
...
@@ -54,13 +54,16 @@ documentation_requires = [
setup
(
name
=
'
pyramid_secure_response
'
,
version
=
get_attr
(
'
pyramid_secure_response/__init__.py
'
,
'
__version__
'
),
description
=
'
pyramid_secure_response
'
,
description
=
'
A library redirects non-http as https, sets hsts header.
'
,
long_description
=
DESCRIPTION
+
'
\n\n
'
+
CHANGELOG
,
classifiers
=
[
'
Programming Language :: Python :: 3
'
,
'
Development Status :: 4 - Beta
'
,
'
Environment :: Web Environment
'
,
'
Framework :: Pyramid
'
,
'
Intended Audience :: Developers
'
,
'
Programming Language :: Python :: 3
'
,
'
Topic :: Internet :: WWW/HTTP
'
,
'
Topic :: Security
'
,
],
author
=
'
Yasuhiro Asaka
'
,
author_email
=
'
yasuhiro.asaka@grauwoelfchen.net
'
,
...
...