core-extra/coretk/setup.py

13 lines
290 B
Python
Raw Normal View History

from setuptools import find_packages, setup
setup(
name="coretk",
version="0.1.0",
packages=find_packages(),
2019-09-18 19:26:26 +01:00
install_requires=["pillow"],
description="CORE GUI",
url="https://github.com/coreemu/core",
author="Boeing Research & Technology",
license="BSD",
)