forked from python-attrs/cattrs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
79 lines (69 loc) · 2.03 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
[tool.black]
skip-magic-trailing-comma = true
[tool.isort]
profile = "black"
known_first_party = ["cattr"]
[tool.poetry]
name = "cattrs"
version = "23.1.0.dev0"
description = "Composable complex class support for attrs and dataclasses."
authors = ["Tin Tvrtkovic <[email protected]>"]
license = "MIT"
repository = "https://github.com/python-attrs/cattrs"
documentation = "https://catt.rs/en/stable/"
keywords = ["attrs", "serialization", "dataclasses"]
packages = [
{ include = "cattr", from = "src" },
{ include = "cattrs", from = "src" },
]
readme = "README.md"
[tool.poetry.dependencies]
python = ">= 3.7"
attrs = ">= 20"
typing_extensions = { version = "*", python = "< 3.8" }
exceptiongroup = { version = "*", python = "< 3.11" }
[tool.poetry.group.dev.dependencies]
pymongo = "^4.2.0"
flake8 = {version = "^5.0.4", python = "^3.8"}
tox = "^3.26.0"
Sphinx = "^5.3.0"
pytest = "^7.1.3"
pytest-benchmark = "^3.2.3"
hypothesis = "^6.54.5"
pendulum = "^2.1.2"
isort = { version = "5.10.1", python = "<4" }
black = "^22.8.0"
immutables = "^0.18"
ujson = "^5.4.0"
orjson = { version = "^3.5.2", markers = "implementation_name == 'cpython'" }
msgpack = "^1.0.2"
PyYAML = "^6.0"
tomlkit = { version = "^0.11.4", python = "<4" }
furo = "^2022.9.29"
coverage = "^6.2"
urllib3 = { version = "^1.26.12", python = "<4" }
sphinx-copybutton = "^0.5.0"
myst-parser = "^0.18.1"
[tool.poetry.urls]
"Changelog" = "https://catt.rs/en/latest/history.html"
"Bug Tracker" = "https://github.com/python-attrs/cattrs/issues"
[tool.pytest.ini_options]
addopts = "-l --benchmark-sort=fullname --benchmark-warmup=true --benchmark-warmup-iterations=5 --benchmark-group-by=fullname"
[tool.coverage.run]
omit = [
"cattr/_compat.py",
"cattr/vendor/typing.py",
"cattr/vendor/python3/typing.py",
]
[tool.coverage.paths]
source = [
"src/cattr",
".tox/*/lib/python*/site-packages/cattr",
".tox/pypy*/site-packages/cattr",
]
[build-system]
requires = ["poetry-core>=1.1.0"]
build-backend = "poetry.core.masonry.api"
[tool.mypy]
plugins = "unionize.py"
strict = true