-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathpyproject.toml
47 lines (41 loc) · 1.34 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
[tool.poetry]
name = "marshmallow-peewee"
version = "5.0.0"
description = "Peewee ORM integration with the Marshmallow (de)serialization library"
authors = ["Kirill Klenov <horneds@gmail.com>"]
license = "MIT"
readme = "README.md"
homepage = "https://github.com/klen/marshmallow-peewee"
repository = "https://github.com/klen/marshmallow-peewee"
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.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
]
packages = [{ include = "marshmallow_peewee" }]
[tool.poetry.dependencies]
python = "^3.9"
peewee = "^3.14.0"
marshmallow = "^3.0.0"
[tool.poetry.group.dev.dependencies]
pre-commit = "*"
[tool.poetry.group.tests.dependencies]
pytest = "*"
pytest-mypy = "*"
[tool.mypy]
packages = ["marshmallow_peewee"]
ignore_missing_imports = true
check_untyped_defs = true
[tool.pytest.ini_options]
addopts = "--mypy -xvs"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"