-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add citations examples, reformat of notebooks, minor fixes
- Loading branch information
1 parent
5fe7a71
commit 470ced1
Showing
10 changed files
with
98 additions
and
41 deletions.
There are no files selected for viewing
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
10 changes: 9 additions & 1 deletion
10
{{cookiecutter.project_name}}/docs/01_tutorials/00_example.rst
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 |
---|---|---|
@@ -1,3 +1,11 @@ | ||
Example | ||
======= | ||
This is a placeholder for the example. | ||
This is a placeholder for the example. | ||
|
||
Citation example | ||
---------------- | ||
It contains an example of citation :cite:`TURING.1950`. | ||
|
||
.. bibliography:: /refs.bib | ||
:style: unsrtalpha | ||
:filter: docname in docnames |
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
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,10 @@ | ||
{ | ||
"cited": { | ||
"01_tutorials/00_example": [ | ||
"TURING.1950" | ||
], | ||
"02_notebooks/00_example": [ | ||
"PlotlyMaps" | ||
] | ||
} | ||
} |
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,21 @@ | ||
@article{TURING.1950, | ||
author = {TURING, A. M.}, | ||
year = {1950}, | ||
title = {I.---COMPUTING MACHINERY AND INTELLIGENCE}, | ||
pages = {433--460}, | ||
volume = {LIX}, | ||
number = {236}, | ||
issn = {0026-4423}, | ||
journal = {Mind}, | ||
doi = {10.1093/mind/LIX.236.433}, | ||
file = {ICOMPUTING MACHINERY AND INTELLIGENCE:Attachments/ICOMPUTING MACHINERY AND INTELLIGENCE.pdf:application/pdf} | ||
} | ||
|
||
|
||
@misc{PlotlyMaps, | ||
abstract = {Plotly's}, | ||
year = {2/16/2024}, | ||
title = {Maps}, | ||
url = {https://plotly.com/python/maps/}, | ||
urldate = {2/28/2024} | ||
} |
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 |
---|---|---|
@@ -1,3 +1,20 @@ | ||
{{cookiecutter.project_name}} | ||
{{cookiecutter.package_name}} | ||
{{cookiecutter.author}} | ||
|
||
appliedAI | ||
autogenerated | ||
colab | ||
docstring | ||
docstrings | ||
Github | ||
html | ||
init | ||
javascript | ||
pre | ||
pycharm | ||
pydocstyle | ||
submodules | ||
subpackages | ||
utils | ||
webpage |
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
8 changes: 2 additions & 6 deletions
8
...iecutter.project_name}}/src/{{cookiecutter.project_name}}/sample_package/sample_module.py
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 |
---|---|---|
@@ -1,10 +1,6 @@ | ||
""" | ||
Module in a separate package | ||
""" | ||
"""Module in a separate package.""" | ||
|
||
|
||
def hello_stranger() -> None: | ||
""" | ||
hello | ||
""" | ||
"""Hello.""" | ||
print("Hello from a separate package!") |