Skip to content

Commit 87b4005

Browse files
committed
initial commit
0 parents  commit 87b4005

File tree

2 files changed

+41
-0
lines changed

2 files changed

+41
-0
lines changed

.gitignore

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
__pycache__/
2+
*.py[cod]
3+
*$py.class
4+
5+
# C extensions
6+
*.so
7+
*.dylib
8+
*.dll
9+
10+
# tests
11+
12+
.coverage
13+
.coverage.*
14+
.cache
15+
nosetests.xml
16+
coverage.xml
17+
*.cover
18+
19+
# mypy
20+
.mypy_cache/
21+
22+
# logs / text files
23+
*.txt
24+
*.log

pyproject.toml

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
[tool.black]
2+
line-length = 120
3+
target-version = ['py37']
4+
include = '\.pyi?$'
5+
exclude = '''
6+
(
7+
/(
8+
\.eggs
9+
| \.git
10+
| \.mypy_cache
11+
| \.tox
12+
| _build
13+
| build
14+
| dist
15+
)/
16+
)
17+
'''

0 commit comments

Comments
 (0)