Skip to content

Commit

Permalink
Added text on creating your own module
Browse files Browse the repository at this point in the history
  • Loading branch information
vcalderon2009 committed Apr 18, 2018
1 parent b1d936b commit aa1e9e0
Show file tree
Hide file tree
Showing 2 changed files with 19 additions and 0 deletions.
1 change: 1 addition & 0 deletions docs/source/index.rst
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@ In case you have any questions, please contact me via

mac_101
python_intro
python_packaging
machine_learning
useful_links

18 changes: 18 additions & 0 deletions docs/source/python_packaging.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
.. _Python_Packaging:
================================================
Python Packaging - Building your own module
================================================

Each project requires its own different functions, definitions, etc.
But most of the times, you will be recycling over old code over and over,
and you will have many duplicates of the same code laying around.

This is why it's important to know how to **build your own python module**.

This is a small tutorial on how to property setup your module, and
about some of the **very useful** tools that you can use in order to

- Test your module for errors (Travis CI)
- Keep your documentation up to date (ReadTheDocs)
- and more.

0 comments on commit aa1e9e0

Please sign in to comment.