-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
#50 Merge pull request from astropenguin/astropenguin/issue49
Release v0.3.0
- Loading branch information
Showing
16 changed files
with
514 additions
and
69 deletions.
There are no files selected for viewing
File renamed without changes.
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
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 |
---|---|---|
|
@@ -73,6 +73,7 @@ instance/ | |
.scrapy | ||
|
||
# Sphinx documentation | ||
docs/_apidoc/ | ||
docs/_build/ | ||
|
||
# PyBuilder | ||
|
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,15 @@ | ||
cff-version: 1.2.0 | ||
message: "If you use this software, please cite it as below." | ||
|
||
title: "ndradex" | ||
abstract: "Multidimensional grid RADEX calculator" | ||
version: 0.3.0 | ||
date-released: 2023-05-19 | ||
license: "MIT" | ||
doi: "10.5281/zenodo.3384031" | ||
url: "https://github.com/astropenguin/ndradex" | ||
authors: | ||
- given-names: "Akio" | ||
family-names: "Taniguchi" | ||
affiliation: "Nagoya University" | ||
orcid: "https://orcid.org/0000-0002-9695-6183" |
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
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
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,7 @@ | ||
#!/bin/bash -eu | ||
|
||
# auto-generate package guide | ||
sphinx-apidoc -efT -o docs/_apidoc ndradex | ||
|
||
# build website | ||
sphinx-build -a docs docs/_build |
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,25 @@ | ||
# Project information | ||
author = "Akio Taniguchi" | ||
copyright = "2019-2023 Akio Taniguchi" | ||
|
||
|
||
# General configuration | ||
extensions = [ | ||
"myst_parser", | ||
"sphinx.ext.autodoc", | ||
"sphinx.ext.viewcode", | ||
"sphinx.ext.napoleon", | ||
"sphinx.ext.autosummary", | ||
] | ||
templates_path = ["_templates"] | ||
exclude_patterns = ["_build", "Thumbs.db", ".DS_Store"] | ||
|
||
|
||
# Options for HTML output | ||
html_static_path = ["_static"] | ||
html_theme = "pydata_sphinx_theme" | ||
html_theme_options = { | ||
"logo": {"text": "ndRADEX"}, | ||
"github_url": "https://github.com/astropenguin/ndradex/", | ||
"twitter_url": "https://twitter.com/astropengu_in/", | ||
} |
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 @@ | ||
```{include} ../README.md | ||
``` | ||
|
||
```{toctree} | ||
--- | ||
hidden: | ||
--- | ||
Home <self> | ||
Package guide <_apidoc/ndradex> | ||
``` |
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
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
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
Oops, something went wrong.