From 49a1e5367698ac26546503bc663a3d69afc70a90 Mon Sep 17 00:00:00 2001 From: jackiekazil Date: Thu, 5 Apr 2018 19:07:24 -0400 Subject: [PATCH] Format fix on last section of Mesa packages docs. --- docs/packages.rst | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/docs/packages.rst b/docs/packages.rst index 6af40c9913e..a4751699f78 100644 --- a/docs/packages.rst +++ b/docs/packages.rst @@ -76,8 +76,8 @@ Sharing a package via PyPI make it easier to install for users but is more overh Most likely you created an ABM that has the code that you want to share in it, which is what the steps below describe. -Sharing your package -~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +**Sharing your package** + 1. Layout a new file structure to move the code into and then make sure it is callable from Mesa, in a simple, easy to understand way. For example, ``from example_package import foo``. See `Creating the Scaffolding `_. @@ -102,8 +102,8 @@ Sharing your package From this point, someone can clone your repo and then add your repo to their Python path and use it in their project. However, if you want to take your package to the next level, you will want to add more structure to your package and share it on PyPI. -Next Level: PyPI -~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +**Next Level: PyPI** + You want to do even more. The authoritative guide for python package development is through the `Python Packaging User Guide `_. This will take you through the entire process necessary for getting your package on the Python Package Index.