We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8f790c0 commit 8b112bdCopy full SHA for 8b112bd
1 file changed
pyproject.toml
@@ -31,7 +31,8 @@ classifiers = [
31
[project.optional-dependencies]
32
dev = [
33
"datamodel-code-generator",
34
- "setuptools_scm"
+ "setuptools_scm",
35
+ "black"
36
]
37
38
[build-system]
@@ -49,3 +50,16 @@ include-package-data = true
49
50
include = ["harp*"]
51
52
[tool.setuptools_scm]
53
+
54
+[tool.black]
55
+line-length = 88
56
+target-version = ['py39']
57
+include = '\.pyi?$'
58
+extend-exclude = '''
59
+# A regex preceded with ^/ will apply only to files and directories
60
+# in the root of the project.
61
+(
62
+ ^/LICENSE
63
+ ^/README.md
64
+)
65
+'''
0 commit comments