view README.txt @ 287:67387621c61b

Added requirements.txt and use it from setup.py
author David Fraser <davidf@sjsoft.com>
date Thu, 05 Sep 2013 16:40:04 +0200
parents d862cc209de4
children 35243e090a30
line wrap: on
line source

Your Game Title
===============

Entry in PyWeek #17  <http://www.pyweek.org/17/>
URL: http://pyweek.org/e/nagslang
Team: Cape Viper (leave the "Team: bit")
Members: YOUR TEAM MEMBERS (leave the "Members: bit")
License: see LICENSE.txt

Requirements
============

The game requires pygame and pymunk. Requirements can be installed by
  pip install -e .
Or
  pip install -r requirements.txt

It was developed using python 2.7, pymunk 4.0 and pygame 1.9.2. Older
versions may or may not work.

The editor also requires Albow 2.2.0
  (from http://www.cosc.canterbury.ac.nz/greg.ewing/python/Albow/)


Running the Game
----------------

On Windows or Mac OS X, locate the "run_game.pyw" file and double-click it.

Othewise open a terminal / console and "cd" to the game directory and run:

  python run_game.py


How to Play the Game
--------------------



Move the cursor around the screen with the mouse.

Press the left mouse button to fire the ducks.


Development notes 
-----------------

Creating a source distribution with::

   python setup.py sdist

You may also generate Windows executables and OS X applications::

   python setup.py py2exe
   python setup.py py2app

Upload files to PyWeek with::

   python pyweek_upload.py

Upload to the Python Package Index with::

   python setup.py register
   python setup.py sdist upload