-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
28 lines (27 loc) · 876 Bytes
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
from setuptools import setup
setup(
name='ctmgc',
version="0.1",
author='Kieran Farrar',
author_email='kieran.farrar@gmail.com',
license='MIT License',
description='Mobile Game Controller plugin for cantools (ct)',
long_description='This is a framework for building multiplayer games played on a main display with mobile phones as controllers.',
packages=[
'ctmgc'
],
zip_safe = False,
install_requires = [
"ct >= 0.8.8.3"
],
entry_points = '''''',
classifiers = [
'Development Status :: 3 - Alpha',
'Environment :: Console',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Topic :: Software Development :: Libraries :: Python Modules'
],
)