Revision 71,
1.0 KB
checked in by atzm, 14 years ago
(diff) |
add preamble
|
-
Property svn:executable set to
*
-
Property svn:keywords set to
Id
|
Line | |
---|
1 | #!/usr/bin/env python |
---|
2 | # -*- coding: utf-8 -*- |
---|
3 | # |
---|
4 | # Copyright (C) 2010 by Atzm WATANABE <atzm@atzm.org> |
---|
5 | # |
---|
6 | # This program is free software; you can redistribute it and/or modify it |
---|
7 | # under the terms of the GNU General Public License (version 2) as |
---|
8 | # published by the Free Software Foundation. It is distributed in the |
---|
9 | # hope that it will be useful, but WITHOUT ANY WARRANTY; without even the |
---|
10 | # implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR |
---|
11 | # PURPOSE. See the GNU General Public License for more details. |
---|
12 | # |
---|
13 | # $Id$ |
---|
14 | # |
---|
15 | |
---|
16 | from setuptools import setup, find_packages |
---|
17 | |
---|
18 | |
---|
19 | setup( |
---|
20 | name='pycodebattler', |
---|
21 | version='0.1', |
---|
22 | description='PyCodeBattler lets Python codes fight!', |
---|
23 | author='Atzm WATANABE', |
---|
24 | author_email="atzm@atzm.org", |
---|
25 | license='GPL-2', |
---|
26 | packages=['pycodebattler'], |
---|
27 | install_requires=['setuptools', 'pep8'], |
---|
28 | entry_points={ |
---|
29 | 'console_scripts': [ |
---|
30 | 'pycodebattler = pycodebattler.battle:_main_entry', |
---|
31 | 'pycodescouter = pycodebattler.scouter:_main_entry', |
---|
32 | ], |
---|
33 | }, |
---|
34 | ) |
---|
Note: See
TracBrowser
for help on using the repository browser.