Changeset 71


Ignore:
Timestamp:
12/22/10 21:40:03 (13 years ago)
Author:
atzm
Message:

add preamble

Location:
pycodebattler/trunk
Files:
8 edited

Legend:

Unmodified
Added
Removed
  • pycodebattler/trunk/pycodebattler/__init__.py

    r47 r71  
    11# -*- coding: utf-8 -*- 
     2# 
     3#  Copyright (C) 2010 by Atzm WATANABE <atzm@atzm.org> 
     4# 
     5#  This program is free software; you can redistribute it and/or modify it 
     6#  under the terms of the GNU General Public License (version 2) as 
     7#  published by the Free Software Foundation.  It is distributed in the 
     8#  hope that it will be useful, but WITHOUT ANY WARRANTY; without even the 
     9#  implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR 
     10#  PURPOSE.  See the GNU General Public License for more details. 
     11# 
    212# $Id$ 
     13# 
    314 
    415import pycodebattler.battle 
  • pycodebattler/trunk/pycodebattler/battle.py

    r50 r71  
    11#!/usr/bin/env python 
    22# -*- 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# 
    313# $Id$ 
     14# 
    415 
    516import os 
  • pycodebattler/trunk/pycodebattler/score.py

    r70 r71  
    11# -*- coding: utf-8 -*- 
     2# 
     3#  Copyright (C) 2010 by Atzm WATANABE <atzm@atzm.org> 
     4# 
     5#  This program is free software; you can redistribute it and/or modify it 
     6#  under the terms of the GNU General Public License (version 2) as 
     7#  published by the Free Software Foundation.  It is distributed in the 
     8#  hope that it will be useful, but WITHOUT ANY WARRANTY; without even the 
     9#  implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR 
     10#  PURPOSE.  See the GNU General Public License for more details. 
     11# 
    212# $Id$ 
     13# 
    314 
    415import os 
  • pycodebattler/trunk/pycodebattler/scouter.py

    r47 r71  
    11#!/usr/bin/env python 
    22# -*- 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# 
    313# $Id$ 
     14# 
    415 
    516import sys 
  • pycodebattler/trunk/pycodebattler/skill.py

    r51 r71  
    11# -*- coding: utf-8 -*- 
     2# 
     3#  Copyright (C) 2010 by Atzm WATANABE <atzm@atzm.org> 
     4# 
     5#  This program is free software; you can redistribute it and/or modify it 
     6#  under the terms of the GNU General Public License (version 2) as 
     7#  published by the Free Software Foundation.  It is distributed in the 
     8#  hope that it will be useful, but WITHOUT ANY WARRANTY; without even the 
     9#  implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR 
     10#  PURPOSE.  See the GNU General Public License for more details. 
     11# 
    212# $Id$ 
     13# 
    314 
    415import sys 
  • pycodebattler/trunk/pycodebattler/util.py

    r47 r71  
    11# -*- coding: utf-8 -*- 
     2# 
     3#  Copyright (C) 2010 by Atzm WATANABE <atzm@atzm.org> 
     4# 
     5#  This program is free software; you can redistribute it and/or modify it 
     6#  under the terms of the GNU General Public License (version 2) as 
     7#  published by the Free Software Foundation.  It is distributed in the 
     8#  hope that it will be useful, but WITHOUT ANY WARRANTY; without even the 
     9#  implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR 
     10#  PURPOSE.  See the GNU General Public License for more details. 
     11# 
    212# $Id$ 
     13# 
    314 
    415import os 
  • pycodebattler/trunk/pycodebattler/warrior.py

    r52 r71  
    11# -*- coding: utf-8 -*- 
     2# 
     3#  Copyright (C) 2010 by Atzm WATANABE <atzm@atzm.org> 
     4# 
     5#  This program is free software; you can redistribute it and/or modify it 
     6#  under the terms of the GNU General Public License (version 2) as 
     7#  published by the Free Software Foundation.  It is distributed in the 
     8#  hope that it will be useful, but WITHOUT ANY WARRANTY; without even the 
     9#  implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR 
     10#  PURPOSE.  See the GNU General Public License for more details. 
     11# 
    212# $Id$ 
     13# 
    314 
    415try: 
  • pycodebattler/trunk/setup.py

    r49 r71  
    11#!/usr/bin/env python 
    22# -*- 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# 
    313# $Id$ 
     14# 
    415 
    516from setuptools import setup, find_packages 
Note: See TracChangeset for help on using the changeset viewer.