15 lines
519 B
Python
15 lines
519 B
Python
|
from setuptools import setup, find_packages
|
||
|
|
||
|
setup (name = 'trespassed',
|
||
|
version = '0.2.0',
|
||
|
packages = ['trespassed'],
|
||
|
#scripts = ['main.py','ez_setup.py','qldemosummary.py'],
|
||
|
author = "Shawn Nock",
|
||
|
author_email = "nock@nocko.se",
|
||
|
description = "Game Control Code for Escape Canada - Trespassed",
|
||
|
license = "APLv2",
|
||
|
keywords = "",
|
||
|
install_requires = ['twisted', 'sysfs-gpio','crcmod','enum34',
|
||
|
'pyserial','attrs','pyopenssl'],
|
||
|
)
|