FazBrowse GitHub Viewer
|
Trending
|
URL:
|
Home
Tools:
[Download Repo ZIP]
[View Raw Code]
[Original HTTPS Page]
falcon-require-https/setup.py at master · BigRLab/falcon-require-https · GitHub
Uh oh!
There was an error while loading.
Please reload this page
.
BigRLab
/
falcon-require-https
Public
forked from
falconry/falcon-require-https
Notifications
You must be signed in to change notification settings
Fork
0
Star
0
Code
Pull requests
0
Actions
Projects
Wiki
Security and quality
0
Insights
Additional navigation options
Code
Pull requests
Actions
Projects
Wiki
Security and quality
Insights
Expand file tree
Breadcrumbs
falcon-require-https
/
setup.py
Copy path
More file actions
More file actions
Latest commit
History
History
History
44 lines (40 loc) · 1.69 KB
Breadcrumbs
falcon-require-https
/
setup.py
Copy path
File metadata and controls
44 lines (40 loc) · 1.69 KB
Raw
Copy raw file
Download raw file
Open symbols panel
Edit and raw actions
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
import
imp
import
io
from
os
import
path
from
setuptools
import
find_packages
,
setup
VERSION
=
imp
.
load_source
(
'version'
,
path
.
join
(
'.'
,
'falcon_require_https'
,
'version.py'
))
VERSION
=
VERSION
.
__version__
setup
(
name
=
'falcon-require-https'
,
version
=
VERSION
,
description
=
'Falcon middleware for sanity-checking that HTTPS was used for the request.'
,
long_description
=
io
.
open
(
'README.rst'
,
'r'
,
encoding
=
'utf-8'
).
read
(),
classifiers
=
[
'Development Status :: 3 - Alpha'
,
'Environment :: Web Environment'
,
'Natural Language :: English'
,
'Intended Audience :: Developers'
,
'Intended Audience :: System Administrators'
,
'License :: OSI Approved :: Apache Software License'
,
'Operating System :: MacOS :: MacOS X'
,
'Operating System :: Microsoft :: Windows'
,
'Operating System :: POSIX'
,
'Topic :: Internet :: WWW/HTTP :: WSGI'
,
'Topic :: Software Development :: Libraries :: Application Frameworks'
,
'Programming Language :: Python'
,
'Programming Language :: Python :: Implementation :: CPython'
,
'Programming Language :: Python :: Implementation :: PyPy'
,
'Programming Language :: Python :: 2.7'
,
'Programming Language :: Python :: 3.3'
,
'Programming Language :: Python :: 3.4'
,
'Programming Language :: Python :: 3.5'
,
],
keywords
=
'wsgi web api framework rest http https tls cloud security'
,
author
=
'paul291'
,
url
=
'https://github.com/falconry/falcon-require-https'
,
license
=
'Apache 2.0'
,
packages
=
find_packages
(
exclude
=
[
'tests'
]),
install_requires
=
[
'falcon'
],
setup_requires
=
[
'pytest-runner'
],
tests_require
=
[
'falcon'
,
'pytest'
],
)
Back
|
FazBrowse Home
|
New Git URL