forked from lyft/toasted-marshmallow
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
103 lines (97 loc) · 2.23 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
[tool.poetry]
name = "DeepFriedMarshmallow"
version = "1.0.0beta2"
description = "A plug-and-play JIT implementation for Marshmallow to speed up data serialization and deserialization"
authors = ["Maciej Wilczynski <[email protected]>", "Roy Williams <[email protected]>"]
readme = "README.md"
homepage = "https://github.com/mLupine/DeepFriedMarshmallow"
license = "Apache-2.0"
keywords = ["serialization", "rest", "json", "api", "marshal", "marshalling", "deserialization", "validation", "schema"]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"License :: OSI Approved :: Apache Software License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: Implementation :: CPython",
"Programming Language :: Python :: Implementation :: PyPy"
]
packages = [{ include = "deepfriedmarshmallow" }]
exclude = ["tests/**/*", "performance/"]
[tool.poetry.dependencies]
python = ">=3.8.1,<4.0.0"
attrs = ">=17.1.0"
marshmallow = ">=3.13.0,<4.0.0"
six = "^1.16.0"
[tool.poetry.group.dev.dependencies]
protobuf = "^4.24.3"
pytest = "^7.4.2"
pytest-cov = "^4.1.0"
pylint = "^3.0.0"
pytz = "^2023.3.post1"
coverage = "^7.3.2"
ruff = "^0.0.292"
black = "^23.9.1"
isort = "^5.12.0"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.black]
line-length = 120
target-version = ['py38', 'py39', 'py310', 'py311', 'py312']
[tool.isort]
profile = "black"
[tool.ruff]
select = [
"A",
"B",
"C",
"E",
"F",
"G",
"I",
"N",
"Q",
"S",
"T",
"W",
"ARG",
"BLE",
"COM",
"DJ",
"DTZ",
"EM",
"ERA",
"EXE",
"FBT",
"ICN",
"INP",
"ISC",
"NPY",
"PD",
"PGH",
"PIE",
"PT",
"PTH",
"PYI",
"RET",
"RSE",
"RUF",
"SIM",
"TCH",
"TID",
"TRY",
"UP",
"YTT",
]
extend-ignore = ["BLE001", "PLR0912", "C901", "PGH003", "ARG002", "F821"]
line-length = 120
target-version = "py311"
extend-exclude = [
"tests/",
"performance/",
"**/__init__.py",
]