Skip to content

Latest commit

 

History

History
49 lines (37 loc) · 890 Bytes

index.rst

File metadata and controls

49 lines (37 loc) · 890 Bytes

python_project

A template setup for a python project.

Features

It contains the following:
  • TravisCI for continuous integration
  • unittest for testing the project libraries
  • Documentation on readthedocs.org built using Sphinx, Doxygen and breathe.
  • Packaging the library for distribution on PyPi

Code snippets in rst file

sample.py

 from python_project import mathlib

 sum = mathlib.add(1, 1)
 print(f"Sum : {sum}")

APIS

.. toctree::
   :maxdepth: 2
   :caption: Contents:

This package provides two different types of APIs.

Math Lib

.. automodule:: python_project.mathlib
   :members:

String Lib

.. automodule:: python_project.strlib
   :members:

Indices and tables