-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.cfg
74 lines (66 loc) · 1.96 KB
/
setup.cfg
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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
[metadata]
name = falcon-auth2
version = attr: falcon_auth2.__version__
description = Falcon authentication middleware that supports multiple authentication types.
long_description = file: README.md
long_description_content_type = text/markdown
author = Federico Caselli
author_email = [email protected]
url = https://github.com/CaselIT/falcon-auth2
license = Apache-2.0,
license_file = LICENSE
classifiers =
Development Status :: 3 - Alpha
Environment :: Web Environment
Intended Audience :: Developers
License :: OSI Approved :: Apache Software License
Operating System :: OS Independent
Programming Language :: Python
Programming Language :: Python :: 3
Programming Language :: Python :: 3.6
Programming Language :: Python :: 3.7
Programming Language :: Python :: 3.8
Programming Language :: Python :: 3.9
Programming Language :: Python :: 3.10
Programming Language :: Python :: Implementation :: CPython
Programming Language :: Python :: Implementation :: PyPy
Topic :: Internet :: WWW/HTTP :: WSGI :: Middleware
Topic :: Software Development :: Libraries :: Python Modules
keywords =
falcon
web
api
middleware
auth
authentication
project_urls =
Documentation = https://falcon-auth2.readthedocs.io
Issue Tracker = https://github.com/CaselIT/falcon-auth2/issues
[options]
packages = find:
python_requires = >=3.6
install_requires =
falcon >= 2
[options.extras_require]
async = greenlet != 0.4.17
jwt = authlib >= 0.15.5
[options.packages.find]
include =
falcon_auth2
falcon_auth2.*
[egg_info]
tag_build = dev
[flake8]
max-line-length = 103
import-order-style = google
application-import-names = falcon_auth2,test
per-file-ignores =
**/__init__.py: F401
[tool:pytest]
addopts=-v -r sfxX --maxfail=25 --no-cov-on-fail --cov-report html --cov-report term
python_files=test/*test_*.py
[coverage:run]
branch = True
source = falcon_auth2
[coverage:report]
show_missing = True