Skip to content

Commit

Permalink
Minor setup fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
ppizarror committed Oct 12, 2018
1 parent 840ffaa commit a4cca4d
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion pygameMenu/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -41,4 +41,4 @@
__description__ = 'Menu for pygame, simple, lightweight and easy to use'
__email__ = 'pablo.pizarro@ing.uchile.cl'
__url__ = 'https://github.com/ppizarror/pygame-menu'
__version__ = 'v1.95.1'
__version__ = 'v1.95.2'
6 changes: 3 additions & 3 deletions readme.content.md
Original file line number Diff line number Diff line change
Expand Up @@ -201,7 +201,7 @@ Obviously you need <a href="http://www.pygame.org/download.shtml">Pygame</a> to

- <i>mainloop(events)</i>

Main loop of menu, on this function Menu can handle exceptions and draw. If parameter **dopause** is enabled then Menu pauses aplication and checks Events.
Main loop of menu, on this function Menu can handle exceptions and draw. If parameter **dopause** is enabled then Menu pauses application and checks Events.

```python
menu = pygameMenu.Menu(...)
Expand Down Expand Up @@ -248,7 +248,7 @@ Obviously you need <a href="http://www.pygame.org/download.shtml">Pygame</a> to

- <i>get_title()</i>

Enable Menu (can check events and draw).
Give the title of the menu.

```python
menu = pygameMenu.Menu(..., title='Menu title', ...)
Expand Down Expand Up @@ -299,7 +299,7 @@ import pygameMenu
fontdir = pygameMenu.fonts.FONT_NAME
```

Avaiable fonts (*FONT_NAME*): **8BIT**, **BEBAS**, **FRANCHISE**, **MUNRO** and **NEVIS**.
Available fonts (*FONT_NAME*): **8BIT**, **BEBAS**, **FRANCHISE**, **MUNRO** and **NEVIS**.


## Configurations
Expand Down
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@
from setuptools import setup
from pygameMenu import __author__, __description__, __email__, __url__, __version__

with open('README.rst', 'r') as f:
with open('README.rst') as f:
long_description = f.read()

setup(
Expand All @@ -42,7 +42,7 @@
description=__description__,
include_package_data=True,
install_requires=['pygame'],
license='GPLv3',
license='MIT',
long_description=long_description,
name='pygame-menu',
packages=['pygameMenu'],
Expand Down

0 comments on commit a4cca4d

Please sign in to comment.