18 lines
592 B
Python
18 lines
592 B
Python
"""Install trespassed."""
|
|
|
|
from setuptools import find_packages, setup
|
|
|
|
setup(name='trespassed',
|
|
version='0.3.0',
|
|
package_dir={"": "src"},
|
|
packages=find_packages(where='src'),
|
|
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)
|