-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
116 lines (108 loc) · 2.17 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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
[tool.poetry]
name = "flask-msgspec"
version = "0.0.2"
description = "msgspec integration for Flask"
authors = ["Huba Tuba <[email protected]>"]
license = "MIT"
readme = "README.md"
repository = "https://github.com/floxay/flask-msgspec"
packages = [{include = "flask_msgspec"}]
keywords = [
"api",
"http",
"flask",
"msgspec",
"validation",
]
classifiers = [
"Environment :: Web Environment",
"Framework :: Flask",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python",
"Topic :: Internet :: WWW/HTTP",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: Software Development :: Libraries",
"Topic :: Software Development",
"Typing :: Typed",
]
[tool.poetry.urls]
"Issue Tracker" = "https://github.com/floxay/flask-msgspec/issues"
"Changelog" = "https://github.com/floxay/flask-msgspec/releases"
[tool.poetry.dependencies]
python = ">=3.8,<4"
msgspec = ">=0.17.0,<1"
Flask = ">=2.2.0,<3"
[tool.poetry.group.dev.dependencies]
black = "*"
ruff = "*"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.ruff]
target-version = "py38"
line-length = 120
select = [
"A",
"B",
"BLE",
"C4",
"C90",
"DJ",
"DTZ",
"E",
"ERA",
"EXE",
"F",
"G",
"I",
"ICN",
"ISC",
"N",
"PIE",
"PLC",
"PLE",
"PLW",
"PTH",
"Q",
"RET",
"RUF",
"S",
"SIM",
"T10",
"T20",
"TCH",
"TID",
"UP",
"W",
"YTT",
]
ignore = [
"A003",
"B010",
"E501",
"S104",
]
src = [
"flask_msgspec",
"tests",
"examples"
]
[tool.ruff.mccabe]
max-complexity = 10
[tool.ruff.isort]
known-first-party = [
"flask_msgspec",
"tests",
"examples"
]
[tool.black]
line-length = 120
target-version = ["py38", "py39", "py310", "py311"]
include = '\.pyi?$'