14 lines
305 B
Python
14 lines
305 B
Python
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",
|
|
)
|