Skip to content

Commit

Permalink
fix docs
Browse files Browse the repository at this point in the history
  • Loading branch information
balins committed Sep 1, 2024
1 parent acd5cbc commit 949cd90
Show file tree
Hide file tree
Showing 41 changed files with 612 additions and 789 deletions.
97 changes: 0 additions & 97 deletions doc/_static/img/index_api.svg

This file was deleted.

76 changes: 0 additions & 76 deletions doc/_static/img/index_examples.svg

This file was deleted.

66 changes: 0 additions & 66 deletions doc/_static/img/index_getting_started.svg

This file was deleted.

67 changes: 0 additions & 67 deletions doc/_static/img/index_user_guide.svg

This file was deleted.

25 changes: 3 additions & 22 deletions doc/api.rst
Original file line number Diff line number Diff line change
Expand Up @@ -4,37 +4,18 @@
API Reference
#############

This is an example on how to document the API of your own project.
API reference for the `fsvm` package.

.. currentmodule:: fsvm

Estimator
FuzzySVC
=========

.. autosummary::
:toctree: generated/
:template: class.rst

TemplateEstimator

Transformer
===========

.. autosummary::
:toctree: generated/
:template: class.rst

TemplateTransformer

Predictor
=========

.. autosummary::
:toctree: generated/
:template: class.rst

TemplateClassifier

FuzzySVC

Utilities
=========
Expand Down
16 changes: 7 additions & 9 deletions doc/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,9 +10,9 @@
# https://www.sphinx-doc.org/en/master/usage/configuration.html#project-information
from importlib.metadata import version as get_version

project = "Scikit-learn Project Template"
copyright = "2016, V. Birodkar"
author = "V. Birodkar"
project = "fsvm"
copyright = "2024, J. Baliński"
author = "J. Baliński"
release = get_version("fsvm")
version = ".".join(release.split(".")[:3])

Expand Down Expand Up @@ -51,24 +51,22 @@
"css/fsvm.css",
]
html_sidebars = {
"quick_start": [],
"user_guide": [],
"api": [],
"auto_examples/index": [],
}

html_theme_options = {
"external_links": [],
"github_url": "https://github.com/balins/fsvm",
# "twitter_url": "https://twitter.com/pandas_dev",
"use_edit_page_button": True,
"show_toc_level": 1,
# "navbar_align": "right", # For testing that the navbar items align properly
}

html_context = {
"github_user": "scikit-learn-contrib",
"github_repo": "project-template",
"github_version": "master",
"github_user": "balins",
"github_repo": "fsvm",
"github_version": "main",
"doc_path": "doc",
}

Expand Down
Loading

0 comments on commit 949cd90

Please sign in to comment.