diff --git a/docs/_source/_api/machinelearningtools.rst b/docs/_source/_api/mlair.rst similarity index 50% rename from docs/_source/_api/machinelearningtools.rst rename to docs/_source/_api/mlair.rst index cd6885f52bedfa295139251c641c5bba8e2a30e9..26166fc3aa8d824e2b0a80a19c656596a86ca3c0 100644 --- a/docs/_source/_api/machinelearningtools.rst +++ b/docs/_source/_api/mlair.rst @@ -1,7 +1,7 @@ -machinelearningtools package -============================ +MLAir package +============= -.. automodule:: src +.. automodule:: mlair :members: :undoc-members: :show-inheritance: diff --git a/docs/_source/conf.py b/docs/_source/conf.py index 573918ee35e9757b8c0b32b2697fc0cc2bc0b38f..d4c71e69cc38499930d28952562372106b5f13b3 100644 --- a/docs/_source/conf.py +++ b/docs/_source/conf.py @@ -15,6 +15,8 @@ import sys sys.path.insert(0, os.path.abspath('../..')) +import mlair + # -- Project information ----------------------------------------------------- project = 'MLAir' @@ -22,9 +24,9 @@ copyright = '2020, Lukas H Leufen, Felix Kleinert' author = 'Lukas H Leufen, Felix Kleinert' # The short X.Y version -version = 'v0.9.0' +version = "v" + ".".join(mlair.__version__.split(".")[0:2]) # The full version, including alpha/beta/rc tags -release = 'v0.9.0' +release = "v" + mlair.__version__ # -- General configuration --------------------------------------------------- diff --git a/docs/_source/index.rst b/docs/_source/index.rst index 341ac58acd62ccc5bcf786580fff1bc193170d62..89d7e5f73c00a04d29042719a39d931a461a3abb 100644 --- a/docs/_source/index.rst +++ b/docs/_source/index.rst @@ -1,16 +1,18 @@ -.. machinelearningtools documentation master file, created by +.. MLair documentation master file, created by sphinx-quickstart on Wed Apr 15 14:27:29 2020. You can adapt this file completely to your liking, but it should at least contain the root `toctree` directive. -Welcome to machinelearningtools's documentation! +Welcome to MLAir's documentation! ================================================ + .. toctree:: :maxdepth: 2 :caption: Contents: get-started + customise api diff --git a/requirements.txt b/requirements.txt index 7da29a05b748531fd4ec327ff17f432ff1ecaabb..e2d8f5bc47e3ab1365814259b313b1a07e54fff3 100644 --- a/requirements.txt +++ b/requirements.txt @@ -65,3 +65,5 @@ wcwidth==0.1.8 Werkzeug==1.0.0 xarray==0.15.0 zipp==3.1.0 + +setuptools~=49.6.0 \ No newline at end of file