Added basic framework
This commit is contained in:
commit
2f9d1a75a0
12 changed files with 211 additions and 0 deletions
25
.gitignore
vendored
Executable file
25
.gitignore
vendored
Executable file
|
|
@ -0,0 +1,25 @@
|
|||
# Python venv
|
||||
# Change this manually if you've changed your venv name
|
||||
venv/
|
||||
|
||||
# Python built packages
|
||||
dist/
|
||||
|
||||
# Docs output
|
||||
docs/build
|
||||
|
||||
# Caches
|
||||
__pycache__/
|
||||
.pytest_cache/
|
||||
*.pyc
|
||||
|
||||
# IDEs
|
||||
.idea/
|
||||
.vim/
|
||||
*.swp
|
||||
|
||||
# Environment variables file
|
||||
.env
|
||||
|
||||
# Ctags file
|
||||
tags
|
||||
Reference in a new issue