16 lines
555 B
Python
16 lines
555 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',
|
|
'klein','jinja2','smbus-cffi'],
|
|
include_package_data = True,
|
|
)
|