Removed ev.py - merged it into evennia.__init__.py.

This commit is contained in:
Griatch 2015-01-07 13:53:11 +01:00
parent c7325a5032
commit 096c9a6276
3 changed files with 15 additions and 280 deletions

View file

@ -1,5 +1,15 @@
"""
Evennia MUD/MUX/MU* creation system
This is the main top-level API for Evennia. You can also explore the
evennia library by accessing evennia.<subpackage> directly.
For full functionality you need to explore this module via a django-
aware shell. Go to your game directory and use the command 'evennia.py shell'
to launch such a shell (using python or ipython depending on your install).
See www.evennia.com for full documentation.
"""
######################################################################
@ -12,7 +22,6 @@ try:
__version__ += " %s" % f.read().strip()
except IOError:
__version__ += " (unknown version)"
del os
######################################################################