Skip to content

Commit 5596835

Browse files
committed
Initialise python project
1 parent 0a8f94d commit 5596835

10 files changed

+793
-0
lines changed

.coveragerc

+4
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
[run]
2+
omit=tests/*
3+
[report]
4+
omit=tests/*

.gitignore

+18
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
# Tests.
2+
.coverage*
3+
htmlcov/
4+
*_results.*
5+
*.log
6+
*.csv
7+
8+
# Python
9+
__pycache__/
10+
*_cache/
11+
*.py[cod]
12+
dist/
13+
14+
# IDE configuration.
15+
.project
16+
.cproject
17+
.settings/
18+
.vscode/

.pylintrc

+4
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
[MASTER]
2+
ignore=tests
3+
init-hook="from pylint.config import find_pylintrc; import os, sys; sys.path.append(os.path.dirname(find_pylintrc()))"
4+
disable=logging-fstring-interpolation

0 commit comments

Comments
 (0)