| Revision 49,
567 bytes
checked in by atzm, 15 years ago
(diff) |
|
add author_email
|
-
Property svn:executable set to
*
-
Property svn:keywords set to
Id
|
| Line | |
|---|
| 1 | #!/usr/bin/env python |
|---|
| 2 | # -*- coding: utf-8 -*- |
|---|
| 3 | # $Id$ |
|---|
| 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 | author_email="atzm@atzm.org", |
|---|
| 14 | license='GPL-2', |
|---|
| 15 | packages=['pycodebattler'], |
|---|
| 16 | install_requires=['setuptools', 'pep8'], |
|---|
| 17 | entry_points={ |
|---|
| 18 | 'console_scripts': [ |
|---|
| 19 | 'pycodebattler = pycodebattler.battle:_main_entry', |
|---|
| 20 | 'pycodescouter = pycodebattler.scouter:_main_entry', |
|---|
| 21 | ], |
|---|
| 22 | }, |
|---|
| 23 | ) |
|---|
Note: See
TracBrowser
for help on using the repository browser.