# You should have received a copy of the GNU General Public License along
# with this program; if not, write to the Free Software Foundation, Inc.,
# 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
+
+VERSION = '0.1'
+__version__ = VERSION
from .log import Logger
-VERSION='0.1'
-
class PlayerError (Exception):
pass
--- /dev/null
+#!/usr/bin/env python
+
+from distutils.core import setup
+from pyrisk import __version__
+
+setup(
+ name='PyRisk',
+ version=__version__,
+ description='Python Risk engine',
+ url='http://www.physics.drexel.edu/code/tar/pyrisk.tgz',
+ packages=['pyrisk',
+ 'pyrisk.player'],
+ )