| Revision 45,
576 bytes
checked in by atzm, 15 years ago
(diff) |
|
add pycodebattler
|
-
Property svn:executable set to
*
|
| Line | |
|---|
| 1 | #!/usr/bin/env python |
|---|
| 2 | # -*- coding: utf-8 -*- |
|---|
| 3 | # $Id: e304a0986f4fb4db7dd998505c53cbd17934ab76 $ |
|---|
| 4 | |
|---|
| 5 | from setuptools import setup, find_packages |
|---|
| 6 | |
|---|
| 7 | |
|---|
| 8 | setup( |
|---|
| 9 | name='pycodebattler', |
|---|
| 10 | version='0.1', |
|---|
| 11 | description='PyCodeBattler lets Python codes fight!', |
|---|
| 12 | author='Atzm WATANABE', |
|---|
| 13 | license='GPL-2', |
|---|
| 14 | packages=['pycodebattler'], |
|---|
| 15 | install_requires=['setuptools', 'pep8'], |
|---|
| 16 | entry_points={ |
|---|
| 17 | 'console_scripts': [ |
|---|
| 18 | 'pycodebattler = pycodebattler.battle:_main_entry', |
|---|
| 19 | 'pycodescouter = pycodebattler.scouter:_main_entry', |
|---|
| 20 | ], |
|---|
| 21 | }, |
|---|
| 22 | ) |
|---|
Note: See
TracBrowser
for help on using the repository browser.