1
0
Fork 0
trespassed/software/setup.py

15 lines
514 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'],
include_package_data = True,
)