Skip to content

Commit

Permalink
Initial commit
Browse files Browse the repository at this point in the history
Signed-off-by: John Strunk <[email protected]>
  • Loading branch information
JohnStrunk committed Aug 25, 2020
0 parents commit 78e5775
Show file tree
Hide file tree
Showing 6 changed files with 684 additions and 0 deletions.
4 changes: 4 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
/__pycache__/
/.mypy_cache/
/.pytest_cache/
/venv/
661 changes: 661 additions & 0 deletions LICENSE

Large diffs are not rendered by default.

9 changes: 9 additions & 0 deletions make-venv.bat
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
::: Create & activate virtual environment
python -m venv venv
call venv\Scripts\activate.bat

::: Upgrade pip to latest
python -m pip install --upgrade pip

::: Install dependencies
pip install --upgrade -r requirements.txt
3 changes: 3 additions & 0 deletions prompt-here.bat
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
@echo off

"C:\WINDOWS\system32\cmd.exe" /K make-venv.bat
2 changes: 2 additions & 0 deletions pytest.ini
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
[pytest]
addopts = --doctest-modules --mypy
5 changes: 5 additions & 0 deletions requirements.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
mypy
pyinstaller
pylint
pytest
pytest-mypy

0 comments on commit 78e5775

Please sign in to comment.