forked from python-attrs/cattrs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
54 lines (48 loc) · 1.22 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
[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.9.0"
description = "Composable complex class support for attrs and dataclasses."
authors = ["Tin Tvrtkovic <tinchester@gmail.com>"]
license = "MIT"
repository = "https://github.com/Tinche/cattrs"
documentation = "https://cattrs.readthedocs.io/en/latest/"
keywords = ["attrs", "serialization", "dataclasses"]
packages = [
{ include = "cattr", from = "src" }
]
readme = "README.rst"
[tool.poetry.dependencies]
python = "^3.7"
attrs = ">= 20"
[tool.poetry.dev-dependencies]
flake8 = "^3.9.0"
tox = "^3.23.0"
coverage = "^5.5"
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.6b0"
immutables = "^0.15"
ujson = "^4.0.2"
orjson = "^3.5.2"
msgpack = "^1.0.2"
PyYAML = "^5.4.1"
tomlkit = "^0.7.0"
motor = "^2.5.0"
furo = "^2021.7.31-beta.41"
[tool.poetry.urls]
"Changelog" = "https://cattrs.readthedocs.io/en/latest/history.html"
"Bug Tracker" = "https://github.com/Tinche/cattrs/issues"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"