This repository was archived by the owner on Jan 22, 2025. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpyproject.toml
62 lines (55 loc) · 1.52 KB
/
pyproject.toml
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
[build-system]
requires = ["setuptools", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "Flask-OpenAPI3-UI"
dynamic = ["version"]
license = { file = "LICENSE" }
requires-python = ">=3.8.0"
description = "Next generation OpenAPI v3 Integration for Flask based APIs. Based on Flasgger."
readme = "README.md"
keywords = ['flask', 'swagger', 'openapi', 'python', 'api', 'rest', 'openapi3']
authors = [{ name = "Overflow Digital", email = "[email protected]" }]
maintainers = [
{ name = "Katerina Tiddy", email = "[email protected]" },
{ name = "Joshua Thompson-Lindley", email = "[email protected]" },
]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.8",
]
dependencies = [
"Flask>=2.1.2",
"PyYAML>=6.0",
"jsonschema>=4.17.0",
"mistune>=3.0.0",
"six>=1.16.0",
]
[project.urls]
repository = "https://github.com/overflowdigital/Flask-OpenAPI/"
[project.entry-points."flask.commands"]
generate-api-schema = "flask_openapi.core.commands:generate_api_schema"
[tools.setuptools]
platforms = ["any"]
[tools.setuptools.packages.find]
where = ['src']
include = ['flask_openapi*']
[tool.setuptools.package-data]
"*" = [
"*.html",
"*.js",
"*.css",
"*.eot",
"*.svg",
"*.ttf",
"*.woff",
"*.woff2",
"*.gif",
"*.ico",
"*.png",
"*.map",
]
[tool.setuptools.dynamic]
version = { attr = "flask_openapi.__version__" }