coretk - updated pipfile to install as editable, added convenient run script, updated images to load assuming local path

This commit is contained in:
Blake Harnden 2019-09-18 11:20:22 -07:00
parent 00a37cbb6f
commit 8682f01fdc
5 changed files with 28 additions and 7 deletions

14
coretk/setup.py Normal file
View file

@ -0,0 +1,14 @@
from setuptools import find_packages, setup
setup(
name="coretk",
version="0.1.0",
packages=find_packages(),
install_requires=[
"pillow",
],
description="CORE GUI",
url="https://github.com/coreemu/core",
author="Boeing Research & Technology",
license="BSD",
)