CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
Udayraj123

Real-time collaboration for Jupyter Notebooks, Linux Terminals, LaTeX, VS Code, R IDE, and more,
all in one place. Commercial Alternative to JupyterHub.

GitHub Repository: Udayraj123/OMRChecker
Path: blob/master/pyproject.toml
Views: 205
1
[tool.black]
2
exclude = '''
3
(
4
/(
5
\.eggs # exclude a few common directories in the
6
| \.git # root of the project
7
| \.venv
8
| _build
9
| build
10
| dist
11
)/
12
| foo.py # also separately exclude a file named foo.py in
13
# the root of the project
14
)
15
'''
16
include = '\.pyi?$'
17
line-length = 88
18
target-version = ['py37']
19
20