# build wheel and source
- python setup.py bdist_wheel sdist
# manual and HTML documentation
- - python setup.py build_sphinx
+ - sphinx-build -d ./build/doctrees doc/source -b man ./build/man/
+ - sphinx-build -d ./build/doctrees doc/source -b html ./build/html/
# install
- pip install dist/*.whl
# smoke test
# add these directories to sys.path here. If the directory is relative to the
# documentation root, use os.path.abspath to make it absolute, like shown here.
#sys.path.insert(0, os.path.abspath('.'))
+import os
+import sys
+sys.path.insert(0, os.path.abspath('../../'))
from sima.info import __author__
# -- General configuration ------------------------------------------------