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