forked from jondot/attrs-serde
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
36 lines (28 loc) · 863 Bytes
/
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
[tool.poetry]
name = "attrs-serde"
version = "0.2.4"
authors = ["Dotan Nahum <[email protected]>"]
description = "A serialization addon for attrs"
license = "MIT"
readme = "README.md"
homepage = "https://github.com/jondot/attrs-serde"
repository = "https://github.com/jondot/attrs-serde"
documentation = "https://github.com/jondot/attrs-serde"
keywords = ["attrs", "serialization", "dict", "data", "nested", "functional"]
[tool.poetry.dependencies]
python = "*"
toolz = "^0.9.0"
cytoolz = "^0.9.0"
attrs = "^19.1"
[tool.poetry.dev-dependencies]
boltons = "^18.0"
pytest = "^3.0"
pytest-benchmark = "^3.1"
pytest-testmon = "^0.9.13"
pytest-watch = "^4.2"
snapshottest = "^0.5.0"
flake8 = { version = "^3.5", optional = true }
flake8-mypy = { version = "^17.8", optional = true }
pytest-jest = "^0.3.0"
[tool.poetry.extras]
lint = ["flake8", "flake8-mypy"]