@@ -22,7 +22,7 @@ def get_version():
2222 if ':' in revision :
2323 revision = revision .split (':' )[- 1 ]
2424 if 'M' in revision :
25- revision = revision [:- 1 ]
25+ revision = str ( int ( revision [:- 1 ]) + 1 )
2626 file = open ('tdl/VERSION.txt' , 'w' )
2727 file .write (base_version + 'r' + revision )
2828 file .close ()
@@ -38,23 +38,13 @@ def get_version():
3838 author = 'Kyle Stewart' ,
3939 author_email = '4B796C65+pythonTDL@gmail.com' ,
4040 description = 'Pythonic port of rogue-like library libtcod.' ,
41- long_description = """python-tdl is a ctypes port of "libtcod".
42-
43- The library is used for displaying tilesets (ANSI, Unicode, or graphical) in true color.
44-
45- It also provides functionality to compute path-finding and field of view.
46-
47- python-tdl on GoogleCode: http://code.google.com/p/python-tdl/
48- Online Documentation: http://pythonhosted.org/tdl/
49- Issue Tracker: http://code.google.com/p/python-tdl/issues/list
50-
51- libtcod: http://doryen.eptalys.net/libtcod/
52- """ ,
41+ long_description = open ('README.txt' , 'r' ).read (),
5342 url = 'http://code.google.com/p/python-tdl/' ,
54- download_url = 'http ://code.google.com/p/python- tdl/downloads/list ' ,
43+ download_url = 'https ://pypi.python.org/pypi/ tdl' ,
5544 packages = ['tdl' ],
56- package_data = {'tdl' : ['lib/*.txt' , '*.bmp' , '*.png' , 'lib/win32/*' ,
45+ package_data = {'tdl' : ['*.txt' , ' lib/*.txt' , '*.bmp' , '*.png' , 'lib/win32/*' ,
5746 'lib/darwin/*.dylib' , 'lib/linux*/*' ]},
47+ install_requires = ['ctypes' ],
5848 classifiers = ['Development Status :: 5 - Production/Stable' ,
5949 'Environment :: Win32 (MS Windows)' ,
6050 'Environment :: MacOS X' ,
@@ -68,12 +58,17 @@ def get_version():
6858 'Programming Language :: Python :: 2.6' ,
6959 'Programming Language :: Python :: 2.7' ,
7060 'Programming Language :: Python :: 3' ,
61+ 'Programming Language :: Python :: 3.0' ,
62+ 'Programming Language :: Python :: 3.1' ,
63+ 'Programming Language :: Python :: 3.2' ,
64+ 'Programming Language :: Python :: 3.3' ,
65+ 'Programming Language :: Python :: Implementation :: CPython' ,
7166 'Programming Language :: Python :: Implementation :: PyPy' ,
7267 'Topic :: Games/Entertainment' ,
7368 'Topic :: Multimedia :: Graphics' ,
7469 'Topic :: Software Development :: Libraries :: Python Modules' ,
7570 ],
76- keywords = 'portable rogue-like rogue-likes text ctypes ASCII ANSI Unicode libtcod fov pathfinsing ' ,
71+ keywords = 'portable rogue-like rogue-likes text ctypes ASCII ANSI Unicode libtcod fov' ,
7772 platforms = ['Windows' , 'Mac OS X' , 'Linux' ],
7873 license = 'New BSD License'
7974 )
0 commit comments