diff --git a/kosopy/__init__.py b/kosopy/__init__.py index e69de29..b3c06d4 100644 --- a/kosopy/__init__.py +++ b/kosopy/__init__.py @@ -0,0 +1 @@ +__version__ = "0.0.1" \ No newline at end of file diff --git a/mkdocs.yml b/mkdocs.yml deleted file mode 100644 index 774f2e4..0000000 --- a/mkdocs.yml +++ /dev/null @@ -1,86 +0,0 @@ -site_name: kosopy -site_description: A python pacakge to handle KoSO data. -site_author: bibhuraushan -site_url: https://github.com/Kodaikanal-Solar-Observatory/kosopy -repo_url: https://github.com/Kodaikanal-Solar-Observatory/kosopy - -copyright: "Copyright © 2024 - 2024 Bibhuti Kumar Jha" - -theme: - palette: - - scheme: default - # primary: blue - # accent: indigo - toggle: - icon: material/toggle-switch-off-outline - name: Switch to dark mode - - scheme: slate - primary: indigo - accent: indigo - toggle: - icon: material/toggle-switch - name: Switch to light mode - name: material - icon: - repo: fontawesome/brands/github - # logo: assets/logo.png - # favicon: assets/favicon.png - features: - - navigation.instant - - navigation.tracking - - navigation.top - - search.highlight - - search.share - custom_dir: "docs/overrides" - font: - text: Google Sans - code: Regular - -plugins: - - search - - mkdocstrings - - git-revision-date - - git-revision-date-localized: - enable_creation_date: true - type: timeago - # - pdf-export - - mkdocs-jupyter: - include_source: True - ignore_h1_titles: True - execute: True - allow_errors: false - ignore: ["conf.py"] - execute_ignore: ["*ignore.ipynb"] - -markdown_extensions: - - admonition - - abbr - - attr_list - - def_list - - footnotes - - meta - - md_in_html - - pymdownx.superfences - - pymdownx.highlight: - linenums: true - - toc: - permalink: true - -# extra: -# analytics: -# provider: google -# property: UA-XXXXXXXXX-X - -nav: - - Home: index.md - - Installation: installation.md - - Usage: usage.md - - Contributing: contributing.md - - FAQ: faq.md - - Changelog: changelog.md - - Report Issues: https://github.com/Kodaikanal-Solar-Observatory/kosopy/issues - - Examples: - - examples/intro.ipynb - - API Reference: - - kosopy module: kosopy.md - - common module: common.md diff --git a/pyproject.toml b/pyproject.toml index 720e141..80d6037 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [project] name = "kosopy" -version = "0.0.1" +version = "0.0.2" dynamic = [ "dependencies", ] @@ -52,7 +52,7 @@ universal = true [tool.bumpversion] -current_version = "0.0.1" +current_version = "0.0.2" commit = true tag = true