#!/usr/bin/env python # -*- coding: utf-8 -*- # # Copyright (C) 2010 by Atzm WATANABE # # This program is free software; you can redistribute it and/or modify it # under the terms of the GNU General Public License (version 2) as # published by the Free Software Foundation. It is distributed in the # hope that it will be useful, but WITHOUT ANY WARRANTY; without even the # implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR # PURPOSE. See the GNU General Public License for more details. # # $Id$ # from setuptools import setup, find_packages setup( name='pycodebattler', version='0.1', description='PyCodeBattler lets Python codes fight!', author='Atzm WATANABE', author_email="atzm@atzm.org", license='GPL-2', packages=['pycodebattler'], install_requires=['setuptools', 'pep8'], entry_points={ 'console_scripts': [ 'pycodebattler = pycodebattler.battle:_main_entry', 'pycodescouter = pycodebattler.scouter:_main_entry', ], }, )