forked from python-attrs/cattrs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
73 lines (64 loc) · 1.75 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
[tool.black]
line-length = 79
skip-magic-trailing-comma = true
[tool.isort]
profile = "black"
line_length = 79
known_first_party = ["cattr"]
[tool.poetry]
name = "cattrs"
version = "1.11.dev0"
description = "Composable complex class support for attrs and dataclasses."
authors = ["Tin Tvrtkovic <tinchester@gmail.com>"]
license = "MIT"
repository = "https://github.com/python-attrs/cattrs"
documentation = "https://cattrs.readthedocs.io/en/latest/"
keywords = ["attrs", "serialization", "dataclasses"]
packages = [
{ include = "cattr", from = "src" },
{ include = "cattrs", from = "src" },
]
readme = "README.rst"
[tool.poetry.dependencies]
python = "^3.7"
attrs = ">= 20"
typing_extensions = { version = "*", python = "~3.7" }
[tool.poetry.dev-dependencies]
pymongo = "^3.12.1"
flake8 = "^3.9.0"
tox = "^3.23.0"
Sphinx = "^4.1.2"
pytest = "^6.2.3"
pytest-benchmark = "^3.2.3"
hypothesis = "^6.9.2"
pendulum = "^2.1.2"
isort = "^5.8.0"
black = "^21.12-beta.0"
immutables = "^0.15"
ujson = "^4.0.2"
orjson = "^3.5.2"
msgpack = "^1.0.2"
PyYAML = "^5.4.1"
tomlkit = "^0.7.0"
furo = "^2021.7.31-beta.41"
coverage = "^6.2"
[tool.poetry.urls]
"Changelog" = "https://cattrs.readthedocs.io/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.0.0"]
build-backend = "poetry.core.masonry.api"