generated from funnyzak/pyproject-starter
-
Notifications
You must be signed in to change notification settings - Fork 14
/
pyproject.toml
201 lines (184 loc) · 4.97 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
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
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
[tool.poetry]
name = "py-d2"
version = "1.0.2"
description = "An unofficial, fully typed python interface for building .d2 graph files in python."
authors = ["David Revay <daverevay@gmail.com>"]
license = "MIT"
readme = "README.md"
homepage = "https://mrblenny.github.io/py-d2/"
repository = "https://github.com/mrblenny/py-d2"
documentation = "https://github.com/MrBlenny/py-d2/blob/main/README.md"
keywords = [
"py-d2",
"d2-lang",
"d2-python",
"diagram-language",
"terrastruct",
]
packages = [
{ include = "py_d2", from = "src" },
{ include = "src/py_d2/py.typed" }
]
[tool.poetry.scripts]
example = "py_d2.main:example"
[tool.poetry.urls]
"Bug Tracker" = "https://github.com/mrblenny/py-d2/issues"
[tool.poetry.dependencies]
python = "^3.7"
[tool.poetry.group.dev]
optional = true
[tool.poetry.group.dev.dependencies]
isort = "^5.10.1"
black = ">=22.8,<24.0"
mypy = "^0.982"
flake8 = "^5.0.4"
Flake8-pyproject = "^1.1.0.post0"
flake8-bugbear = "^22.9.23"
flake8-logging-format = "^0.9.0"
ipdb = "^0.13.9"
tox = "^3.26.0"
pre-commit = "^2.20.0"
[tool.poetry.group.test]
optional = true
[tool.poetry.group.test.dependencies]
pytest = "^7.1.3"
[tool.poetry.group.coverage]
optional = true
[tool.poetry.group.coverage.dependencies]
coverage = "^6.5.0"
pytest-cov = "^4.0.0"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.pytest.ini_options]
minversion = "6.0"
addopts = "-ra -vvv -s"
testpaths = ["tests"]
pythonpath = ["tests"]
norecursedirs = ["tests/_cache"]
[tool.black]
line-length = 120
include = '\.pyi?$'
extend-exclude = '''
# A regex preceded with ^/ will apply only to files and directories
# in the root of the project.
(
\.pytest_cache
| \.git
| \.mypy_cache
)
'''
[tool.isort]
profile = 'black'
# The 'black' profile means:
# multi_line_output = 3
# include_trailing_comma = true
# force_grid_wrap = 0
# use_parentheses = true
# ensure_newline_before_comments = true
# line_length = 88
line_length = 120 # override black provile line_length
force_single_line = true # override black profile multi_line_output
star_first = true
group_by_package = true
force_sort_within_sections = true
lines_after_imports = 2
honor_noqa = true
atomic = true
ignore_comments = false
skip_gitignore = true
src_paths = ['src', 'tests']
[tool.flake8]
max-line-length = 120
max-complexity = 18
count = true
show-source = true
statistics = true
disable-noqa = false
enable-extensions = [
'G', # flake8-logging-format
]
# it's not a bug that we aren't using all of hacking
extend-ignore = [
# H101: Use TODO(NAME)
'H101',
# H202: assertRaises Exception too broad
'H202',
# H233: Python 3.x incompatible use of print operator
'H233',
# H301: one import per line
'H301',
# H306: imports not in alphabetical order (time, os)
'H306',
# H401: docstring should not start with a space
# 'H401',
# H403: multi line docstrings should end on a new line
'H403',
# H404: multi line docstring should start without a leading new line
'H404',
# H405: multi line docstring summary not separated with an empty line
'H405',
# H501: Do not use self.__dict__ for string formatting
'H501',
# F401: module imported but unused
#'F401'
]
# 'select' defaults to: E,F,W,C90
extend-select = [
# * Default warnings reported by flake8-bugbear (B) -
# https://github.com/PyCQA/flake8-bugbear#list-of-warnings
'B',
# * The B950 flake8-bugbear opinionated warnings -
# https://github.com/PyCQA/flake8-bugbear#opinionated-warnings
'B9',
#
# * Complexity violations reported by mccabe (C) -
# http://flake8.pycqa.org/en/latest/user/error-codes.html#error-violation-codes
# mccabe only ever reports one violation - C901 based on the complexity value
# provided by the user.
# This is selected by default.
#'C90',
#
# * Documentation conventions compliance reported by pydocstyle (D) -
# http://www.pydocstyle.org/en/stable/error_codes.html
#'D', # FIXME TODO
#
# * Default errors reported by pycodestyle (E) -
# https://pycodestyle.readthedocs.io/en/latest/intro.html#error-codes
# This is selected by default.
#'E',
#
# * Default errors reported by pyflakes (F) -
# http://flake8.pycqa.org/en/latest/user/error-codes.html
# This is selected by default.
#'F',
#
# * flake8-mypy - enable limited type checking as a linter
# http://flake8.pycqa.org/en/latest/user/error-codes.html
#'T4', # FIXME TODO
#
# * Default warnings reported by pycodestyle (W) -
# https://pycodestyle.readthedocs.io/en/latest/intro.html#error-codes
# This is selected by default.
#'W',
]
extend-exclude = [
'.github',
'.gitlab',
'.Python',
'.*.pyc',
'.*.pyo',
'.*.pyd',
'.*.py.class',
'*.egg-info',
'venv*',
'.venv*',
'.*_cache',
'lib',
'lib64',
'.*.so',
'build',
'dist',
'sdist',
'wheels',
]