Skip to content

Commit ac9a780

Browse files
4B796C65@gmail.com4B796C65@gmail.com
authored andcommitted
Moved to GoogleCode
0 parents  commit ac9a780

29 files changed

+3599
-0
lines changed

CHANGELOG.txt

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
Version 1.0.8 Wed 07 Apr 2010 10:41:06 AM PDT
2+
* No longer works in Python 2.5 but now works in 3.x and has been partly tested
3+
* Many bug fixes
4+
5+
Version 1.0.5 Tue 06 Apr 2010 04:38:53 PM PDT
6+
* Got rid of setuptools dependency, this will make it much more compatible with Python 3.x
7+
* Fixed a nasty typo with the Mac library import
8+
9+
Version 1.0.4 Tue 06 Apr 2010 09:32:18 AM PDT
10+
* All constant colors (C_*) have been removed, they may be put back in later.
11+
* Made some type assertion failures show the value they received to help in general debugging. Still working on it.
12+
* Added Mac and 64 bit Linux support
13+

MANIFEST

Lines changed: 34 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,34 @@
1+
# file GENERATED by distutils, do NOT edit
2+
CHANGELOG.txt
3+
README.txt
4+
setup.py
5+
documentation\rebuild_docs.bat
6+
documentation\tdl.event.html
7+
documentation\tdl.html
8+
documentation\tdl.local.html
9+
documentation\tdl.tcod.html
10+
examples\events.py
11+
examples\hello_world.py
12+
examples\stress_test.py
13+
tdl\LIBTCOD-LICENSE.txt
14+
tdl\README-SDL.txt
15+
tdl\SDL.dll
16+
tdl\SDL.framework.tar
17+
tdl\SDL_image.framework.tar
18+
tdl\__init__.py
19+
tdl\event.py
20+
tdl\libpng14.framework.tar
21+
tdl\libpng15.framework.tar
22+
tdl\libtcod-VS.dll
23+
tdl\libtcod-mingw.dll
24+
tdl\libtcod.framework.tar
25+
tdl\libtcod.so
26+
tdl\libtcod64.so
27+
tdl\local.py
28+
tdl\tcod.py
29+
tdl\terminal8x8_aa_as.png
30+
tdl\zlib1.dll
31+
tdl.egg-info\SOURCES.txt
32+
tdl.egg-info\dependency_links.txt
33+
tdl.egg-info\requires.txt
34+
tdl.egg-info\top_level.txt

MANIFEST.in

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
include *.txt
2+
include *.bat
3+
include tdl/*.bmp
4+
include tdl/*.png
5+
include tdl/*.txt
6+
include tdl/*.so
7+
include tdl/*.dll
8+
include tdl/*.dylib
9+
include tdl/*.framework.tar
10+
include examples/*.py
11+
include documentation/*.html
12+
include ez_setup.py
13+
exclude build/*
14+
exclude dist/*

README.txt

Lines changed: 35 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,35 @@
1+
=== Installation ===
2+
TDL requires setuptools and will automatically install it if you have an active Internet connection
3+
Generally you should run "setup.py install" in whichever way your OS allows
4+
5+
=== Requirements ===
6+
* Python 2.6+ or 3.x
7+
* 32 bit Windows or 32/64 bit Linux
8+
* setuptools (Will install itself when you run setup.py but requires an active Internet connection)
9+
10+
=== About ===
11+
TDL is a port of the C library libtcod in an attempt to make it more "Pythonic"
12+
You can find more about libtcod at http://doryen.eptalys.net/libtcod/
13+
14+
== License ==
15+
Copyright (c) 2010 Kyle Stewart
16+
17+
This software is provided 'as-is', without any express or implied
18+
warranty. In no event will the authors be held liable for any damages
19+
arising from the use of this software.
20+
21+
Permission is granted to anyone to use this software for any purpose,
22+
including commercial applications, and to alter it and redistribute it
23+
freely, subject to the following restrictions:
24+
25+
1. The origin of this software must not be misrepresented; you must not
26+
claim that you wrote the original software. If you use this software
27+
in a product, an acknowledgment in the product documentation would be
28+
appreciated but is not required.
29+
30+
2. Altered source versions must be plainly marked as such, and must not be
31+
misrepresented as being the original software.
32+
33+
3. This notice may not be removed or altered from any source
34+
distribution.
35+

documentation/rebuild_docs.bat

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
cd ..
2+
python setup.py install
3+
cd documentation
4+
del *.html
5+
python -m pydoc -w tdl
6+
python -m pydoc -w tdl.local
7+
python -m pydoc -w tdl.event
8+
python -m pydoc -w tdl.tcod

0 commit comments

Comments
 (0)