-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathopenapi.config.json
More file actions
36 lines (36 loc) · 1.2 KB
/
Copy pathopenapi.config.json
File metadata and controls
36 lines (36 loc) · 1.2 KB
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
{
"source": "examples/openapi.json",
"name": "Example API",
"repository": "https://github.com/ultralytics/openapi",
"apiKey": {
"environment": "EXAMPLE_API_KEY"
},
"license": {
"id": "AGPL-3.0-only",
"file": "LICENSE",
"url": "https://spdx.org/licenses/AGPL-3.0-only.html"
},
"python": {
"authors": [{ "name": "Ultralytics", "email": "hello@ultralytics.com" }],
"client": "Example",
"classifiers": [
"Intended Audience :: Developers",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: 3.14",
"Topic :: Software Development :: Libraries :: Python Modules",
"Typing :: Typed"
],
"description": "Typed Python SDK for Example API",
"install": "pip install example-api-sdk",
"keywords": ["api-client", "openapi", "sdk"],
"maintainers": [{ "name": "Ultralytics", "email": "hello@ultralytics.com" }],
"package": "example_api",
"project": "example-api-sdk",
"requiresPython": ">=3.11",
"version": "0.1.0"
}
}