generated from kyegomez/Python-Package-Template
-
-
Notifications
You must be signed in to change notification settings - Fork 10
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Your Name
committed
Sep 14, 2024
1 parent
ac70d53
commit a294695
Showing
5 changed files
with
189 additions
and
91 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
--- | ||
version: 2 | ||
build: | ||
os: ubuntu-22.04 | ||
tools: | ||
python: "3.11" | ||
mkdocs: | ||
configuration: docs/mkdocs.yml | ||
python: | ||
install: | ||
- requirements: docs/requirements.txt |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,143 @@ | ||
docs_dir: '.' # replace with the correct path if your documentation files are not in the same directory as mkdocs.yml | ||
site_name: Swarm Model Architectures | ||
# site_url: https://docs.swarms.world | ||
site_author: Swarms | ||
site_description: Swarming algorithms like PSO, Ant Colony, Sakana, and more in PyTorch 😊 | ||
repo_name: kyegomez/swarms-torch | ||
repo_url: https://github.com/kyegomez/swarms-pytorch | ||
edit_uri: https://github.com/kyegomez/swarms-pytorch/tree/main/docs | ||
copyright: TGSC Corp 2024. All rights reserved. | ||
|
||
plugins: | ||
# - glightbox | ||
- search | ||
- git-authors | ||
- mkdocs-jupyter: | ||
kernel_name: python3 | ||
execute: false | ||
include_source: True | ||
include_requirejs: true | ||
- mkdocstrings: | ||
default_handler: python | ||
handlers: | ||
python: | ||
options: | ||
parameter_headings: true | ||
paths: [supervision] | ||
load_external_modules: true | ||
allow_inspection: true | ||
show_bases: true | ||
group_by_category: true | ||
docstring_style: google | ||
show_symbol_type_heading: true | ||
show_symbol_type_toc: true | ||
show_category_heading: true | ||
domains: [std, py] | ||
- git-committers: | ||
repository: kyegomez/swarms | ||
branch: master | ||
# token: !ENV ["GITHUB_TOKEN"] | ||
- git-revision-date-localized: | ||
enable_creation_date: true | ||
extra_css: | ||
- assets/css/extra.css | ||
extra: | ||
social: | ||
- icon: fontawesome/brands/twitter | ||
link: https://x.com/KyeGomezB | ||
- icon: fontawesome/brands/github | ||
link: https://github.com/kyegomez/swarms-pytorch | ||
- icon: fontawesome/brands/twitter | ||
link: https://x.com/swarms_corp | ||
- icon: fontawesome/brands/discord | ||
link: https://discord.com/servers/agora-999382051935506503 | ||
|
||
analytics: | ||
provider: google | ||
property: G-MPE9C65596 | ||
|
||
theme: | ||
name: material | ||
custom_dir: overrides | ||
logo: assets/img/swarms-logo.png | ||
palette: | ||
- scheme: default | ||
primary: black | ||
toggle: | ||
icon: material/brightness-7 | ||
name: Switch to dark mode | ||
# Palette toggle for dark mode | ||
- scheme: slate | ||
primary: black | ||
toggle: | ||
icon: material/brightness-4 | ||
name: Switch to light mode | ||
features: | ||
- content.code.copy | ||
- content.code.annotate | ||
- navigation.tabs | ||
- navigation.sections | ||
- navigation.expand | ||
- navigation.top | ||
- announce.dismiss | ||
# Extensions | ||
markdown_extensions: | ||
- abbr | ||
- admonition | ||
- attr_list | ||
- def_list | ||
- footnotes | ||
- md_in_html | ||
- toc: | ||
permalink: true | ||
- pymdownx.arithmatex: | ||
generic: true | ||
- pymdownx.betterem: | ||
smart_enable: all | ||
- pymdownx.caret | ||
- pymdownx.details | ||
- pymdownx.emoji: | ||
emoji_generator: !!python/name:material.extensions.emoji.to_svg | ||
emoji_index: !!python/name:material.extensions.emoji.twemoji | ||
- pymdownx.highlight: | ||
anchor_linenums: true | ||
line_spans: __span | ||
pygments_lang_class: true | ||
- pymdownx.inlinehilite | ||
- pymdownx.keys | ||
- pymdownx.magiclink: | ||
normalize_issue_symbols: true | ||
repo_url_shorthand: true | ||
user: squidfunk | ||
repo: mkdocs-material | ||
- pymdownx.mark | ||
- pymdownx.smartsymbols | ||
- pymdownx.snippets: | ||
auto_append: | ||
- includes/mkdocs.md | ||
- pymdownx.superfences: | ||
custom_fences: | ||
- name: mermaid | ||
class: mermaid | ||
format: !!python/name:pymdownx.superfences.fence_code_format | ||
- pymdownx.tabbed: | ||
alternate_style: true | ||
combine_header_slug: true | ||
slugify: !!python/object/apply:pymdownx.slugs.slugify | ||
kwds: | ||
case: lower | ||
- pymdownx.tasklist: | ||
custom_checkbox: true | ||
- pymdownx.tilde | ||
nav: | ||
- Home: | ||
- Overview: "index.md" | ||
- Contributing: "contributing.md" | ||
- Overview: "swarms/index.md" | ||
- Purpose: "swarms/purpose.md" | ||
- swarms_torch: | ||
- ParticleSwarmOptimization: "swarms/pso.md" | ||
- AntColonyOptimization: "swarms/aco.md" | ||
- QueenBeeGa: "swarms/qb.md" | ||
- SpiralOptimization: "swarms/so.md" | ||
- FireflyOptimizer: "swarms/firefly.md" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,35 @@ | ||
mkdocs | ||
mkdocs-material | ||
mkdocs-glightbox | ||
mkdocs-git-authors-plugin | ||
mkdocs-git-revision-date-plugin | ||
mkdocs-git-committers-plugin | ||
mkdocstrings | ||
mike | ||
mkdocs-jupyter | ||
mkdocs-git-committers-plugin-2 | ||
mkdocs-git-revision-date-localized-plugin | ||
mkdocs-redirects | ||
mkdocs-material-extensions | ||
mkdocs-simple-hooks | ||
mkdocs-awesome-pages-plugin | ||
mkdocs-versioning | ||
mkdocs-mermaid2-plugin | ||
mkdocs-include-markdown-plugin | ||
mkdocs-enumerate-headings-plugin | ||
mkdocs-autolinks-plugin | ||
mkdocs-minify-html-plugin | ||
mkdocs-autolinks-plugin | ||
|
||
# Requirements for core | ||
jinja2~=3.1 | ||
markdown~=3.7 | ||
mkdocs-material-extensions~=1.3 | ||
pygments~=2.18 | ||
pymdown-extensions~=10.9 | ||
|
||
# Requirements for plugins | ||
babel~=2.16 | ||
colorama~=0.4 | ||
paginate~=0.5 | ||
regex>=2022.4 |
This file was deleted.
Oops, something went wrong.