forked from dianagudu/ofcli
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.cfg
69 lines (60 loc) · 1.73 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
[metadata]
name = ofcli
version = file: src/ofcli/VERSION
summary = helper CLI tool for OIDC federation exploration
description = helper tool for OIDC federation exploration
long_description = file: README.md
long_description_content_type = text/markdown
author = Diana Gudu
author_email = [email protected]
home_page = https://gitlab.geant.org/TI_Incubator/oidcfed/ofcli
project_urls =
Bug Tracker = https://gitlab.geant.org/TI_Incubator/oidcfed/ofcli/issues
license = MIT
license_files = [LICENSE]
classifier =
Development Status :: 3 - Alpha
Environment :: Console
Environment :: Web Environment
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
Programming Language :: Python :: 3
Programming Language :: Python :: 3.7
Programming Language :: Python :: 3.8
Programming Language :: Python :: 3.9
Programming Language :: Python :: 3.10
Programming Language :: Python :: 3.11
Topic :: System :: Systems Administration
Topic :: System :: Systems Administration :: Authentication/Directory
Topic :: Utilities
[options.entry_points]
console_scripts =
ofcli = ofcli.__main__:main
ofapi = ofcli.api:main
[options]
install_requires =
click
click_logging
requests
cryptojwt
pygraphviz
fastapi
uvicorn[standard]
oidcmsg
pydantic_settings
package_dir=
=src
packages=find:
include_package_data = True
[options.packages.find]
where = src
[options.package_data]
ofcli = VERSION
[bdist_wheel]
universal = 1