-
Notifications
You must be signed in to change notification settings - Fork 154
/
pyproject.toml
39 lines (33 loc) · 1.12 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
[tool.poetry]
name = "dataclasses-json"
version = "0.0.0"
description = "Easily serialize dataclasses to and from JSON."
authors = ["Charles Li <[email protected]>"]
maintainers = ['Charles Li <[email protected]>', 'Georgiy Zubrienko <[email protected]>', 'Vitaliy Savitskiy <[email protected]>', 'Matthias Als <[email protected]>']
license = 'MIT'
readme = "README.md"
repository = 'https://github.com/lidatong/dataclasses-json'
[tool.poetry.dependencies]
python = "^3.7"
typing-inspect = ">=0.4.0, <1"
marshmallow = ">=3.18.0,<4.0.0"
[tool.poetry.group.dev.dependencies]
pytest = "^7.1"
pytest-cov = "~2.12"
mypy = ">=0.710, <2"
hypothesis = "^6.77"
portray = "^1.6"
flake8 = "^5"
simplejson = "^3.19.1"
black = "^22"
[tool.black]
line-length = 120
[build-system]
requires = ["poetry-core>=1.2.0", "poetry-dynamic-versioning"]
build-backend = "poetry_dynamic_versioning.backend"
[tool.poetry-dynamic-versioning]
enable = true
[tool.poetry.urls]
changelog = "https://github.com/lidatong/dataclasses-json/releases"
documentation = "https://lidatong.github.io/dataclasses-json/"
issues = "https://github.com/lidatong/dataclasses-json/issues"