This repository has been archived by the owner on Aug 14, 2024. It is now read-only.
forked from mathewmarcus/marshmallow-pynamodb
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpyproject.toml
88 lines (81 loc) · 1.81 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
80
81
82
83
84
85
86
87
88
[tool.coverage.report]
fail_under = 85
[tool.black]
target-version = ['py38']
include = '\.pyi?$'
exclude = '''
(
/(
\.eggs # exclude a few common directories in the
| \.git # root of the project
| \.hg
| \.mypy_cache
| \.tox
| \.venv
| \venv
| \.aws-sam
| _build
| buck-out
| build
| dist
| node_modules
)/
)
'''
[tool.poetry]
name = "marshmallow-pynamo-db"
version = "1.1.0"
description = "PynamoDB integration with the Marshmallow (de)serialization library"
authors = ["Mathew Marcus <[email protected]>", "Chris Maillefaud <[email protected]>"]
readme = "README.md"
repository = "https://github.com/chrismaille/marshmallow-pynamodb"
license = "MIT"
packages = [
{ include = "marshmallow_pynamodb" },
]
[tool.isort]
profile = "black"
multi_line_output = 3
include_trailing_comma = true
force_grid_wrap = 0
use_parentheses = true
ensure_newline_before_comments = true
[tool.semantic_release]
version_variable = [
"marshmallow_pynamodb/__init__.py:__version__",
"pyproject.toml:version"
]
branch = "master"
upload_to_pypi = true
upload_to_release = true
build_command = "python -m pip install -U twine poetry && poetry build"
[tool.poetry.dependencies]
python = ">=3.7, <4"
marshmallow = ">=3.0"
marshmallow_enum = "*"
pynamodb = ">=5.0.0"
[tool.poetry.dev-dependencies]
black = {version = "*", allow-prereleases = true}
funcsigs = "*"
freezegun ="*"
mock = "*"
pynamodb-attributes = "*"
pytest = "*"
pytest-black = "*"
pytest-cov = "*"
pytest-lazy-fixture = "*"
pytest-mock = "*"
pytest-flake8 = "*"
pytest-xdist ="*"
pytest-freezegun = "*"
yamllint = "*"
auto-changelog = "*"
twine = "*"
flake8 = "*"
isort = "*"
bandit = "*"
pre-commit = "*"
coverage="*"
[build-system]
requires = ["poetry>=0.12"]
build-backend = "poetry.masonry.api"