This repository was archived by the owner on May 21, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy pathREADME
More file actions
56 lines (39 loc) · 1.49 KB
/
README
File metadata and controls
56 lines (39 loc) · 1.49 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
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:
* Windows XP or later
* Mac OS X 10.3 or later
* Linux, with the following libraries (most recent distributions will have
these in a default installation):
* OpenGL and GLX
* GDK 2.0 or later (required for loading images)
* OpenAL or ALSA (required for playing audio)
Installation
------------
If you're reading this README from a source distribution, install pyglet
with::
python setup.py install
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.
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.