summaryrefslogtreecommitdiff
path: root/setup.py
blob: 559bf7b32822df823b00b4ecead530f816a9a0ec (about) (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
from setuptools import setup

setup(
    name='SnakeGame',
    version='1.0',
    description='The game of Snake, for beginner AI bot writers.',
    author='Peter Ward',
    author_email='peteraward@gmail.com',
    packages=['snakegame'],
    entry_points={
        'console_scripts': [
            'snakegame = snakegame:main',
        ]
    },
)