-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
126 lines (108 loc) · 2.05 KB
/
pyproject.toml
File metadata and controls
126 lines (108 loc) · 2.05 KB
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
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
[build-system]
requires = [
"poetry>=0.12",
]
build-backend = "poetry.masonry.api"
[tool.poetry]
name = "basicserial"
version = "1.2.1"
description = "A convenience wrapper around serialization libraries to handle common tasks."
authors = [
"Jason Simeone <jay@classless.net>"
]
license = "MIT"
readme = "README.rst"
homepage = "https://github.com/jayclassless/basicserial"
keywords = [
"serialize",
"serialization",
"json",
"yaml",
"toml",
]
classifiers = [
"Development Status :: 5 - Production/Stable",
]
include = [
"CHANGES.rst",
]
[tool.poetry.dependencies]
python = "^3.7"
iso8601 = "*"
[tool.poetry.dev-dependencies]
coverage = "*"
py = "*"
pytest = "*"
pytz = "*"
pyyaml = "*"
"ruamel.yaml" = "*"
pytoml = "*"
toml = "*"
qtoml = "*"
tomlkit = "*"
tomli = "*"
tomli_w = "*"
simplejson = "*"
orjson = { version = "*", markers = "implementation_name == 'cpython'" }
python-rapidjson = "*"
ujson = "*"
hyperjson = { version = "*", markers = "python_version < '3.9' and implementation_name == 'cpython'" }
pybind11 = "*"
pysimdjson = "*"
[tool.pytest.ini_options]
minversion = "6.0"
addopts = "-vv"
[tool.coverage.run]
data_file = ".coverage"
source = [
"basicserial",
]
branch = true
[tool.coverage.report]
show_missing = true
exclude_lines = [
"raise NotImplementedError",
"pragma: no cover",
]
[tool.tidypy]
exclude = [
'.venv/.*',
'test/.*',
'build/.*',
'dist/.*',
'.pytest_cache/.*',
]
vulture = {use = false}
[tool.tidypy.pycodestyle]
disabled = [
'W391',
'E731',
]
[tool.tidypy.pydocstyle]
disabled = [
'D100', 'D101', 'D102', 'D103', 'D104', 'D105', 'D107',
'D200', 'D202', 'D203', 'D205', 'D212',
'D400', 'D401',
]
[tool.tidypy.pylint]
disabled = [
'missing-docstring',
'trailing-newlines',
'duplicate-code',
]
[tool.tidypy.pylint.options]
min-public-methods = 0
[tool.tidypy.pyflakes]
disabled = [
'UnusedImport',
'ImportStarUsed',
]
[tool.tidypy.yamllint]
disabled = [
'empty-lines',
'document-start',
]
[tool.tidypy.bandit]
disabled = [
'B506',
]