We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ebd12ce commit a304318Copy full SHA for a304318
1 file changed
pyproject.toml
@@ -32,8 +32,11 @@ classifiers = [
32
dev = [
33
"datamodel-code-generator",
34
"pytest",
35
- "black"
+ "black",
36
+ "isort",
37
+ "codespell"
38
]
39
+
40
jupyter = [
41
"ipykernel",
42
"matplotlib"
@@ -56,7 +59,7 @@ include = ["harp*"]
56
59
[tool.setuptools_scm]
57
60
58
61
[tool.black]
-line-length = 88
62
+line-length = 108
63
target-version = ['py39']
64
include = '\.pyi?$'
65
extend-exclude = '''
@@ -68,3 +71,10 @@ extend-exclude = '''
68
71
| reflex-generator
69
72
)
70
73
'''
74
75
+[tool.isort]
76
+profile = 'black'
77
78
+[tool.codespell]
79
+skip = '.git,*.pdf,*.svg'
80
+ignore-words-list = 'nd'
0 commit comments