Initial commit

This commit is contained in:
Salt 2020-01-17 22:15:58 -06:00
parent adfb5cd005
commit 3ee3c5ae08
4 changed files with 27 additions and 0 deletions

1
.gitignore vendored
View File

@ -1 +1,2 @@
*.swp
venv

12
main.py Normal file
View File

@ -0,0 +1,12 @@
#! /usr/bin/env python3
# -*- coding: utf-8 -*-
# vim:fenc=utf-8
#
# Bad Witch
# Copyright © 2020 Vintage Salt <rehashedsalt@cock.li>
#
# Distributed under terms of the MIT license.
#

1
requirements.txt Normal file
View File

@ -0,0 +1 @@
PyQt5==5.9.2

13
venv.sh Executable file
View File

@ -0,0 +1,13 @@
#! /bin/sh
#
# venv.sh
# Copyright (C) 2020 Vintage Salt <rehashedsalt@cock.li>
#
# Distributed under terms of the MIT license.
#
[ -r ./venv/bin/activate ] || exit 1
. ./venv/bin/activate
printf "Spawned a terminal within the venv\n"
exec bash