Installation instructions

This commit is contained in:
Miguel Grinberg
2021-06-06 12:21:53 +01:00
parent d903c42370
commit 1a8db51cb3
2 changed files with 11 additions and 2 deletions

View File

@@ -12,8 +12,7 @@
#
import os
import sys
sys.path.insert(0, os.path.abspath('../microdot'))
sys.path.insert(1, os.path.abspath('../microdot-asyncio'))
sys.path.insert(0, os.path.abspath('../src'))
# -- Project information -----------------------------------------------------

View File

@@ -1,3 +1,13 @@
Installation
------------
Microdot can be installed with ``pip``::
pip install microdot
For platforms that do not support or cannot run ``pip``, you can also manually
copy and install the ``microdot.py`` and ``microdot_asyncio.py`` source files.
Examples
--------