-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathsetup.cfg
60 lines (50 loc) · 1.35 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
[metadata]
name = flaat
summary = User authorization for OIDC authenticated python web APIs.
description_file = README.md
description_content_type = text/markdown; charset=UTF-8
author = Marcus Hardt
author_email = [email protected]
home_page = https://github.com/indigo-dc/flaat
project_urls =
Bug Tracker = https://github.com/indigo-dc/flaat/issues
Documentation = https://flaat.readthedocs.io/en/latest/
license = MIT
license_files = LICENSE
classifier =
Environment :: Console
Environment :: Web Environment
Framework :: Flask
Intended Audience :: Developers
Intended Audience :: Information Technology
Intended Audience :: Science/Research
Intended Audience :: System Administrators
License :: OSI Approved :: MIT License
Operating System :: OS Independent
Natural Language :: English
Programming Language :: Python :: 3
Topic :: Internet :: WWW/HTTP
Topic :: System :: Systems Administration
Topic :: System :: Systems Administration :: Authentication/Directory
[options.entry_points]
console_scripts =
flaat-userinfo=flaat.flaat_userinfo:main
[bdist_wheel]
universal = 1
[files]
packages =
flaat
[pycodestyle]
select =
ignore = E127,E203,E221,E241,E128
max_line_length = 100
max_doc_length = 100
[tool.black]
line-length = 100
[extras]
flask =
Flask
aiohttp =
aiohttp
fastapi =
fastapi>=0.61.2