-
Notifications
You must be signed in to change notification settings - Fork 1
/
pyproject.toml
62 lines (55 loc) · 1.32 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>=65"]
build-backend = "setuptools.build_meta"
[project]
name = "restx-monkey"
dynamic = ["version", ]
authors = [
{ name = "Tom Trval", email = "thandeus@gmail.com" },
]
description = "Monkey patches to keep flask-restx working with latest flask and werkzeug."
readme = "README.md"
license = { text = "BSD-3-Clause" }
requires-python = ">=3.8"
dependencies = [
'flask-restx>=0.1',
]
keywords = [
"restx",
"flask-restx",
"api",
"rest",
"flask",
"restplus",
"json",
"openapi",
"python",
]
classifiers = [
"License :: OSI Approved :: BSD License",
"Operating System :: OS Independent",
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"Topic :: Internet :: WWW/HTTP :: WSGI :: Server",
"Framework :: Flask",
"Programming Language :: Python :: 3",
"Typing :: Typed",
]
[project.urls]
"Homepage" = "https://github.com/Ryu-CZ/restx-monkey"
"Bug Tracker" = "https://github.com/Ryu-CZ/restx-monkey/issues"
[options]
test_suite = "tests"
[tool.setuptools]
package-dir = {"" = "src"}
packages = ["restx_monkey", ]
[tool.setuptools.dynamic]
version = {attr = "restx_monkey.__version__"}
[coverage.run]
branch = true
source = [
"src/restx_monkey",
"tests",
]
[coverage.paths]
source = "restx_monkey"