Skip to content

Commit

Permalink
fixes for sphinx and versioning
Browse files Browse the repository at this point in the history
  • Loading branch information
gagelarsen authored and Tsubashi committed Nov 19, 2018
1 parent a359322 commit 7960a8e
Show file tree
Hide file tree
Showing 13 changed files with 85 additions and 7 deletions.
4 changes: 2 additions & 2 deletions conanfile.py
Original file line number Diff line number Diff line change
Expand Up @@ -64,8 +64,8 @@ def requirements(self):
self.requires("pybind11/2.2.2@aquaveo/stable")

# Use the dev version of XMSCore, XMSInterp, XMSGrid, XMSExtractor
self.requires("xmscore/[>=1.0.40]@aquaveo/stable")
self.requires("xmsinterp/[>=1.0.19]@aquaveo/stable")
self.requires("xmscore/[>=1.0.43,<2.0]@aquaveo/stable")
self.requires("xmsinterp/[>=1.0.23,<2.0]@aquaveo/stable")

def build(self):
cmake = CMake(self)
Expand Down
1 change: 1 addition & 0 deletions pydocs/source/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@
import os
import sys
sys.path.insert(0, os.path.abspath('.'))
sys.path.insert(0, os.path.abspath(os.path.join('..', '..', 'build', 'lib')))


# -- Project information -----------------------------------------------------
Expand Down
8 changes: 3 additions & 5 deletions pydocs/source/index.rst
Original file line number Diff line number Diff line change
Expand Up @@ -3,17 +3,14 @@
:width: 250px
:align: right

*******************
********************
XmsStamper |version|
*******************
********************

**Last Updated:** October 5, 2018

The xmsstamper library is a stamping library for other aquaveo products. This library contains classes used to create stamping.

.. note::

Documentation coming soon!

Contents
========
Expand All @@ -22,6 +19,7 @@ Contents
:maxdepth: 1

gettingstarted
modules

Acknowledgements
================
Expand Down
25 changes: 25 additions & 0 deletions pydocs/source/modules.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
*******
Modules
*******

**Last Update:** October 5, 2018

These are the modules currently exposed to python from the xmsstamper library

stamper
=======

.. automodule:: xmsstamper_py.stamper

.. toctree::
:maxdepth: 1

modules/stamper/XmStamper
modules/stamper/XmStamperIo.rst
modules/stamper/XmStampRaster
modules/stamper/XmGuidebank
modules/stamper/XmSlopedAbutment
modules/stamper/XmStampCrossSection
modules/stamper/XmStamperCenterlineProfile
modules/stamper/XmStamperEndCap
modules/stamper/XmWingWall
6 changes: 6 additions & 0 deletions pydocs/source/modules/stamper/XmGuidebank.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
***********
XmGuidebank
***********

.. autoclass:: xmsstamper_py.stamper.XmGuidebank
:members:
6 changes: 6 additions & 0 deletions pydocs/source/modules/stamper/XmSlopedAbutment.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
****************
XmSlopedAbutment
****************

.. autoclass:: xmsstamper_py.stamper.XmSlopedAbutment
:members:
6 changes: 6 additions & 0 deletions pydocs/source/modules/stamper/XmStampCrossSection.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
*******************
XmStampCrossSection
*******************

.. autoclass:: xmsstamper_py.stamper.XmStampCrossSection
:members:
6 changes: 6 additions & 0 deletions pydocs/source/modules/stamper/XmStampRaster.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
*************
XmStampRaster
*************

.. autoclass:: xmsstamper_py.stamper.XmStampRaster
:members:
6 changes: 6 additions & 0 deletions pydocs/source/modules/stamper/XmStamper.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
*********
XmStamper
*********

.. autoclass:: xmsstamper_py.stamper.XmStamper
:members:
6 changes: 6 additions & 0 deletions pydocs/source/modules/stamper/XmStamperCenterlineProfile.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
**************************
XmStamperCenterlineProfile
**************************

.. autoclass:: xmsstamper_py.stamper.XmStamperCenterlineProfile
:members:
6 changes: 6 additions & 0 deletions pydocs/source/modules/stamper/XmStamperEndCap.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
***************
XmStamperEndCap
***************

.. autoclass:: xmsstamper_py.stamper.XmStamperEndCap
:members:
6 changes: 6 additions & 0 deletions pydocs/source/modules/stamper/XmStamperIo.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
***********
XmStamperIo
***********

.. autoclass:: xmsstamper_py.stamper.XmStamperIo
:members:
6 changes: 6 additions & 0 deletions pydocs/source/modules/stamper/XmWingWall.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
**********
XmWingWall
**********

.. autoclass:: xmsstamper_py.stamper.XmWingWall
:members:

0 comments on commit 7960a8e

Please sign in to comment.