aboutsummaryrefslogtreecommitdiff
path: root/setup.py
blob: 16f73b584054022e44df8f30d0ef5ee17f77aaab (plain)
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
#!/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_master', 'turtetris_slave']
    )