Skip to content

Commit 1d17a04

Browse files
committed
finished fixing .rst files
1 parent 7c0ada3 commit 1d17a04

File tree

3 files changed

+11
-11
lines changed

3 files changed

+11
-11
lines changed
File renamed without changes.

README.rst

Lines changed: 9 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -3,14 +3,15 @@
33
==============
44
The latest Windows installer can be found on PyPI: https://pypi.python.org/pypi/tdl
55

6-
Or if it's available you can use pip instead by running the command: pip install tdl
6+
If it's available you can use pip instead by running the command:
77

8-
This module can also be manually installed by going into the "setup.py"
9-
directory and running the command: python setup.py install
8+
pip install tdl
109

11-
Already compiled libtcod libraries are included as part of the package data.
12-
They won't need to be compiled as part of the installation, but can be replaced
13-
with newer versions if necessary.
10+
This module can also be manually installed by going into the "setup.py" directory and running the command:
11+
12+
python setup.py install
13+
14+
Already compiled libtcod libraries are included as part of the package data. They won't need to be compiled as part of the installation, but can be replaced with newer versions if necessary.
1415

1516
=======
1617
About
@@ -27,8 +28,7 @@ Online Documentation: http://pythonhosted.org/tdl/
2728

2829
Issue Tracker: https://github.com/HexDecimal/python-tdl/issues
2930

30-
python-tdl is a ctypes port of "libtcod".
31-
You can find more about libtcod at http://doryen.eptalys.net/libtcod/
31+
python-tdl is a ctypes port of "libtcod". You can find more about libtcod at http://doryen.eptalys.net/libtcod/
3232

3333
==============
3434
Requirements
@@ -39,5 +39,4 @@ You can find more about libtcod at http://doryen.eptalys.net/libtcod/
3939
=========
4040
License
4141
=========
42-
python-tdl is distributed under the FreeBSD license, same as libtcod.
43-
Read LICENSE.txt for more details.
42+
python-tdl is distributed under the FreeBSD license, same as libtcod. Read LICENSE.txt for more details.

setup.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,8 @@
1313
author='Kyle Stewart',
1414
author_email='4B796C65+pythonTDL@gmail.com',
1515
description='Pythonic port of rogue-like library libtcod.',
16-
long_description=open('README.txt', 'r').read() + open('CHANGELOG.txt', 'r').read(),
16+
long_description='\n'.join([open('README.rst', 'r').read(),
17+
open('CHANGELOG.rst', 'r').read()]),
1718
url='https://github.com/HexDecimal/python-tdl',
1819
download_url='https://pypi.python.org/pypi/tdl',
1920
packages=['tdl'],

0 commit comments

Comments
 (0)