Metadata-Version: 2.1
Name: evennia
Version: 4.2.0
Summary: A full-featured toolkit and server for text-based multiplayer games (MUDs, MU*, etc).
Maintainer-email: Griatch <griatch@gmail.com>
License: BSD
Project-URL: Homepage, https://www.evennia.com
Project-URL: Github, https://github.com/evennia/evennia
Project-URL: Documentation, https://www.evennia.com/docs/latest/index.html
Project-URL: Live Demo, https://demo.evennia.com/
Project-URL: Forums, https://github.com/evennia/evennia/discussions
Project-URL: Discord, https://discord.gg/AJJpcRUhtF
Project-URL: Dev Blog, https://www.evennia.com/devblog/index.html
Project-URL: Game Index, http://games.evennia.com
Project-URL: Issue tracker, https://github.com/evennia/evennia/issues
Project-URL: Patreon, https://www.patreon.com/griatch
Keywords: MUD,MUSH,MUX,MMO,text-only,multiplayer,online,rpg,game,engine,framework,text,adventure,telnet,websocket,blind,accessible,ascii,utf-8,terminal,online,server,beginner,tutorials
Classifier: Programming Language :: Python :: 3 :: Only
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: JavaScript
Classifier: Development Status :: 5 - Production/Stable
Classifier: License :: OSI Approved :: BSD License
Classifier: Environment :: Console
Classifier: Environment :: Web Environment
Classifier: Framework :: Django
Classifier: Framework :: Twisted
Classifier: Intended Audience :: Developers
Classifier: Intended Audience :: Education
Classifier: Operating System :: MacOS
Classifier: Operating System :: Microsoft :: Windows
Classifier: Operating System :: POSIX :: Linux
Classifier: Topic :: Database
Classifier: Topic :: Education
Classifier: Topic :: Games/Entertainment :: Multi-User Dungeons (MUD)
Classifier: Topic :: Games/Entertainment :: Puzzle Games
Classifier: Topic :: Games/Entertainment :: Role-Playing
Classifier: Topic :: Games/Entertainment :: Simulation
Classifier: Topic :: Software Development :: Libraries :: Application Frameworks
Classifier: Topic :: Internet :: WWW/HTTP :: WSGI :: Server
Requires-Python: >=3.10
Description-Content-Type: text/markdown
License-File: LICENSE.txt
Requires-Dist: django<4.3,>=4.2
Requires-Dist: twisted<24,>=23.10
Requires-Dist: pytz>=2022.6
Requires-Dist: djangorestframework<3.15,>=3.14
Requires-Dist: pyyaml>=6.0
Requires-Dist: django-filter==2.4
Requires-Dist: django-sekizai==2.0.0
Requires-Dist: inflect>=5.2.0
Requires-Dist: autobahn<21.0.0,>=20.7.1
Requires-Dist: lunr==0.6.0
Requires-Dist: simpleeval<=1.0
Requires-Dist: uritemplate==4.1.1
Requires-Dist: Jinja2<3.1
Requires-Dist: tzdata>=2022.6
Requires-Dist: pydantic<2.0
Requires-Dist: mock>=4.0.3
Requires-Dist: model_mommy>=2.0
Requires-Dist: anything==0.2.1
Requires-Dist: black>=22.6
Requires-Dist: isort>=5.10
Requires-Dist: parameterized==0.8.1
Provides-Extra: extra
Requires-Dist: cryptography>=2.8; extra == "extra"
Requires-Dist: pyasn1>=0.4.8; extra == "extra"
Requires-Dist: bcrypt>=3.1.7; extra == "extra"
Requires-Dist: pyopenssl>=19.1; extra == "extra"
Requires-Dist: service_identity>=18.1.0; extra == "extra"
Requires-Dist: boto3>=1.4.4; extra == "extra"
Requires-Dist: botocore>=1.15; extra == "extra"
Requires-Dist: jupyter>=1.0.0; extra == "extra"
Requires-Dist: ipython>=7.19.0; extra == "extra"
Requires-Dist: django-extensions>=3.1.0; extra == "extra"
Requires-Dist: scipy==1.12.0; extra == "extra"
Requires-Dist: gitpython>=3.1.27; extra == "extra"

# Evennia MUD/MU\* Creation System ![][logo]
[![unittestciimg]][unittestcilink] [![Coverage Status][coverimg]][coverlink] [![Pypi Version][pypibadge]][pypilink]


[Evennia][homepage] is a modern library for creating [online multiplayer text
games][wikimudpage] (MUD, MUSH, MUX, MUCK, MOO etc) in pure Python. It
allows game creators to design and flesh out their ideas with great
freedom.

Evennia does not impose a particular style, genre or game mechanic. Instead it
solves the boring networking and basic stuff all online games need. It provides
a framework and tools for you to build the game you want. Coding in Evennia is
done using normal Python modules imported into the server at runtime.

Evennia has [extensive documentation][docs]. It also has a very active community
with [discussion forums][group] and a [discord server][chat] to help and support you!

## Installation

    pip install evennia
        (windows users once: py -m evennia)
    evennia --init mygame
    cd mygame
    evennia migrate
    evennia start / stop / reload

See [the full installation instructions][installation] for more help.

Next, browse to `http://localhost:4001` or use your third-party mud client to
connect to `localhost`, port `4000` to see your working (if empty) game!

![screenshot][screenshot]
_A game website is created automatically. Connect to your Evennia game from your
web browser as well as using traditional third-party clients_.

## Where to go next

If this piqued your interest, there is a [lengthier introduction][introduction] to read. You
can also read our [Evennia in pictures][evenniapictures] overview. After that,
why not check out the [Evennia Beginner tutorial][beginnertutorial].

Welcome!


[homepage]: https://www.evennia.com
[docs]: https://www.evennia.com/docs/latest
[screenshot]: https://user-images.githubusercontent.com/294267/205434941-14cc4f59-7109-49f7-9d71-0ad3371b007c.jpg
[logo]: https://github.com/evennia/evennia/blob/master/evennia/web/website/static/website/images/evennia_logo.png
[unittestciimg]: https://github.com/evennia/evennia/workflows/test-suite/badge.svg
[unittestcilink]: https://github.com/evennia/evennia/actions?query=workflow%3Atest-suite
[coverimg]: https://coveralls.io/repos/github/evennia/evennia/badge.svg?branch=main
[coverlink]: https://coveralls.io/github/evennia/evennia?branch=main
[pypibadge]: https://img.shields.io/pypi/v/evennia?color=blue
[pypilink]: https://pypi.org/project/evennia/
[introduction]: https://www.evennia.com/docs/latest/Evennia-Introduction.html
[license]: https://www.evennia.com/docs/latest/Licensing.html
[group]: https://github.com/evennia/evennia/discussions
[chat]: https://discord.gg/AJJpcRUhtF
[wikimudpage]: http://en.wikipedia.org/wiki/MUD
[evenniapictures]: https://www.evennia.com/docs/latest/Evennia-In-Pictures.html
[beginnertutorial]: https://www.evennia.com/docs/latest/Howtos/Beginner-Tutorial/Beginner-Tutorial-Overview.html
[installation]: https://www.evennia.com/docs/latest/Setup/Setup-Overview.html#installation-and-running
