forked from falconry/falcon-require-https
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
44 lines (40 loc) · 1.69 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
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'],
)