diff options
author | Karel Kočí <karel.koci@nic.cz> | 2017-07-18 13:04:24 +0200 |
---|---|---|
committer | Karel Kočí <karel.koci@nic.cz> | 2017-07-18 13:15:54 +0200 |
commit | 2cdfe900d79bc2364ef609ddf4c5c0fe732e78df (patch) | |
tree | 1149897c514f538771b432013f9a4b5cd3b2cc7d /setup.py | |
download | turris-tetris-2cdfe900d79bc2364ef609ddf4c5c0fe732e78df.tar.gz turris-tetris-2cdfe900d79bc2364ef609ddf4c5c0fe732e78df.tar.bz2 turris-tetris-2cdfe900d79bc2364ef609ddf4c5c0fe732e78df.zip |
Add initial version with support for gamepad input
Diffstat (limited to 'setup.py')
-rw-r--r-- | setup.py | 30 |
1 files changed, 30 insertions, 0 deletions
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' + ] + } + ) |