From 2cdfe900d79bc2364ef609ddf4c5c0fe732e78df Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Karel=20Ko=C4=8D=C3=AD?= Date: Tue, 18 Jul 2017 13:04:24 +0200 Subject: Add initial version with support for gamepad input --- setup.py | 30 ++++++++++++++++++++++++++++++ 1 file changed, 30 insertions(+) create mode 100644 setup.py (limited to 'setup.py') diff --git a/setup.py b/setup.py new file mode 100644 index 0000000..ab7ffa6 --- /dev/null +++ b/setup.py @@ -0,0 +1,30 @@ +#!/usr/bin/env python3 +from setuptools import setup + +setup( + name='turtetris', + version='0.1', + description="Turris Tetris", + long_description="Tetris game played on ten Turris Omnias stacked on top of each other.", + url="https://github.com/Cynerd/mcserver-wrapper", + author="Cynerd", + author_email="cynerd@email.cz", + license="GPLv2", + + classifiers=[ + 'Development Status :: 3 - Alpha', + 'Programming Language :: Python :: 3', + 'Programming Language :: Python :: 3.3', + 'Programming Language :: Python :: 3.4', + 'Programming Language :: Python :: 3.5', + 'Programming Language :: Python :: 3.6', + ], + keywords='Turris Tetris', + + packages=['turtetris'], + entry_points={ + 'console_scripts': [ + 'turtetris-master=turtetris-master' + ] + } + ) -- cgit v1.2.3