-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy pathpyproject.toml
More file actions
80 lines (69 loc) · 1.83 KB
/
Copy pathpyproject.toml
File metadata and controls
80 lines (69 loc) · 1.83 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
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
[project]
name = "marshmallow-peewee"
version = "5.1.0"
description = "Peewee ORM integration with the Marshmallow (de)serialization library"
authors = [{ name = "Kirill Klenov", email = "horneds@gmail.com" }]
requires-python = ">=3.10,<4"
readme = "README.md"
license = "MIT"
keywords = ["marshmallow", "peewee", "orm", "serialization", "deserialization"]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: 3.14",
]
dependencies = ["peewee", "marshmallow>=3.0.0,<4"]
[project.urls]
Homepage = "https://github.com/klen/marshmallow-peewee"
Repository = "https://github.com/klen/marshmallow-peewee"
[dependency-groups]
dev = ["pre-commit", "ruff", "pyrefly"]
tests = ["pytest"]
[tool.uv]
default-groups = "all"
[tool.uv.build-backend]
module-name = ["marshmallow_peewee"]
module-root = ""
[build-system]
requires = ["uv_build>=0.10.2,<0.11.0"]
build-backend = "uv_build"
[tool.pytest.ini_options]
addopts = "-xvs"
[tool.ruff]
include = ["marshmallow_peewee/*", "tests/**/*"]
line-length = 100
target-version = "py310"
[tool.ruff.lint]
select = ["ALL"]
ignore = [
"ANN",
"ARG",
"COM",
"D",
"N",
"UP",
"S",
"SLF",
"INP001",
"PLR2004",
"TD",
"FIX",
]
[tool.pyrefly]
project-includes = ["marshmallow_peewee"]
project-excludes = ["tests", "pyproject.toml"]
[tool.bumpversion]
current_version = "5.1.0"
commit = false
tag = false
[[tool.bumpversion.files]]
filename = "pyproject.toml"
search = 'version = "{current_version}"'
replace = 'version = "{new_version}"'