Skip to content

Commit 9511efb

Browse files
committed
First Commit with all Source
1 parent a3fd453 commit 9511efb

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

51 files changed

+11240
-20
lines changed

.gitignore

Lines changed: 91 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,91 @@
1+
Resources/*
2+
3+
# Byte-compiled / optimized / DLL files
4+
__pycache__/
5+
*.py[cod]
6+
7+
# C extensions
8+
*.so
9+
10+
# Distribution / packaging
11+
.Python
12+
env/
13+
build/
14+
develop-eggs/
15+
dist/
16+
downloads/
17+
eggs/
18+
.eggs/
19+
lib/
20+
lib64/
21+
parts/
22+
sdist/
23+
var/
24+
*.egg-info/
25+
.installed.cfg
26+
*.egg
27+
28+
# PyInstaller
29+
# Usually these files are written by a python script from a template
30+
# before PyInstaller builds the exe, so as to inject date/other infos into it.
31+
*.manifest
32+
*.spec
33+
34+
# Installer logs
35+
pip-log.txt
36+
pip-delete-this-directory.txt
37+
38+
# Unit test / coverage reports
39+
htmlcov/
40+
.tox/
41+
.coverage
42+
.coverage.*
43+
.cache
44+
nosetests.xml
45+
coverage.xml
46+
*.cover
47+
48+
# Translations
49+
*.mo
50+
*.pot
51+
52+
# Django stuff:
53+
*.log
54+
55+
# Sphinx documentation
56+
docs/_build/
57+
58+
# PyBuilder
59+
target/
60+
61+
# DotEnv configuration
62+
.env
63+
64+
# Database
65+
*.db
66+
*.rdb
67+
68+
# Pycharm
69+
.idea
70+
71+
# VS Code
72+
.vscode/
73+
74+
# Spyder
75+
.spyproject/
76+
77+
# Jupyter NB Checkpoints
78+
.ipynb_checkpoints/
79+
80+
# exclude data from source control by default
81+
/data/
82+
83+
# Mac OS-specific storage files
84+
.DS_Store
85+
86+
# vim
87+
*.swp
88+
*.swo
89+
90+
# Mypy cache
91+
.mypy_cache/

.pre-commit-config.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ repos:
66
- id: remove-crlf
77

88
- repo: https://github.com/pre-commit/pre-commit-hooks
9-
rev: v4.5.0
9+
rev: v5.0.0
1010
hooks:
1111
- id: trailing-whitespace
1212
- id: check-merge-conflict
@@ -16,6 +16,6 @@ repos:
1616
- id: detect-private-key
1717

1818
- repo: https://github.com/adrienverge/yamllint.git
19-
rev: v1.35.1
19+
rev: v1.36.2
2020
hooks:
2121
- id: yamllint

0 commit comments

Comments
 (0)