mirror of
https://github.com/evennia/evennia.git
synced 2025-10-29 19:35:56 +00:00
17 lines
422 B
Python
Executable File
17 lines
422 B
Python
Executable File
#! /usr/bin/python
|
|
"""
|
|
Windows launcher. This is called by a dynamically created .bat file in
|
|
the python bin directory and makes the 'evennia' program available on
|
|
the command %path%.
|
|
"""
|
|
|
|
import os, sys
|
|
|
|
# for pip install -e
|
|
sys.path.insert(0, os.path.abspath(os.getcwd()))
|
|
# main library path
|
|
sys.path.insert(0, os.path.join(sys.prefix, "Lib", "site-packages"))
|
|
|
|
from evennia.server.evennia_launcher import main
|
|
main()
|