google-code-export / pyglet

Automatically exported from code.google.com/p/pyglet
BSD 3-Clause "New" or "Revised" License
1 stars 1 forks source link

pyglet

http://www.pyglet.org/

pyglet provides an object-oriented programming interface for developing games and other visually-rich applications for Windows, Mac OS X and Linux.

Requirements

pyglet runs with Python 2.5+ and also with Python 3 through 2to3 tool (which is executed automatically when installing). pyglet works on the following operating systems:

Installation

If you're reading this README from a source distribution, install pyglet with:

python setup.py install

This is required for Python 3 as the code needs to be processed by 2to3
during the installation.

For Python 2 there are no compilation steps during the installation; if you prefer, you can simply add this directory to your PYTHONPATH and use pyglet without installing it.

The documentation is available online at pyglet.org, but if you want to build the documentation yourself, please check the README file in the doc directory.

Support

pyglet has an active developer and user community. If you find a bug, please open an issue at http://code.google.com/p/pyglet/issues (requires a Google account).

Please join us on the mailing list at:

http://groups.google.com/group/pyglet-users

For more information and an RSS news feed, visit http://www.pyglet.org

Testing

Because of its interactive nature pyglet uses a custom test runner which is invoked with:

% python tests/test.py

The test runner is described in more detail in the tests/test.py docstring.