From 7348324025960aaa086369614b5d18d328a4ff9d Mon Sep 17 00:00:00 2001 From: Tobias Raabe Date: Sat, 27 Mar 2021 10:09:54 +0100 Subject: [PATCH 1/3] Add citation. --- CITATION | 6 ++++++ MANIFEST.in | 1 + README.rst | 15 +++++++++++++++ 3 files changed, 22 insertions(+) create mode 100644 CITATION diff --git a/CITATION b/CITATION new file mode 100644 index 00000000..df2684cd --- /dev/null +++ b/CITATION @@ -0,0 +1,6 @@ +@Unpublished{Raabe2020, +Title = {A Python tool for managing scientific research workflows.}, +Author = {Tobias Raabe}, +Year = {2020}, +Url = {https://github.com/pytask-dev/pytask} +} diff --git a/MANIFEST.in b/MANIFEST.in index 8ff22a14..788c8511 100644 --- a/MANIFEST.in +++ b/MANIFEST.in @@ -1,3 +1,4 @@ +include CITATION include LICENSE include versioneer.py include src/_pytask/_version.py diff --git a/README.rst b/README.rst index 427f6e90..aeba621f 100644 --- a/README.rst +++ b/README.rst @@ -186,3 +186,18 @@ The license also includes a copyright and permission notice from pytest since so modules, classes, and functions are copied from pytest. Not to mention how pytest has inspired the development of pytask in general. Without the amazing work of Holger Krekel and pytest's many contributors, this project would not have been possible. Thank you! + + +Citation +-------- + +If you rely on pytask for your research, please cite it with + +.. code-block:: + + @Unpublished{Raabe2020, + Title = {A Python tool for managing scientific research workflows.}, + Author = {Tobias Raabe}, + Year = {2020}, + Url = {https://github.com/pytask-dev/pytask} + } From 7d8b8289d3191b83319bfd5a7fd2d0ea3a5371f2 Mon Sep 17 00:00:00 2001 From: Tobias Raabe Date: Sat, 27 Mar 2021 10:15:41 +0100 Subject: [PATCH 2/3] wording: --- README.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.rst b/README.rst index aeba621f..adb4bfcb 100644 --- a/README.rst +++ b/README.rst @@ -196,7 +196,7 @@ If you rely on pytask for your research, please cite it with .. code-block:: @Unpublished{Raabe2020, - Title = {A Python tool for managing scientific research workflows.}, + Title = {A Python tool for managing research workflows.}, Author = {Tobias Raabe}, Year = {2020}, Url = {https://github.com/pytask-dev/pytask} From 1a5c7b8099dcc156de5edb025a158754e0d0e3a1 Mon Sep 17 00:00:00 2001 From: Tobias Raabe Date: Sun, 28 Mar 2021 21:13:01 +0200 Subject: [PATCH 3/3] fix. --- CITATION | 2 +- README.rst | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/CITATION b/CITATION index df2684cd..5708e1db 100644 --- a/CITATION +++ b/CITATION @@ -1,5 +1,5 @@ @Unpublished{Raabe2020, -Title = {A Python tool for managing scientific research workflows.}, +Title = {A Python tool for managing scientific workflows.}, Author = {Tobias Raabe}, Year = {2020}, Url = {https://github.com/pytask-dev/pytask} diff --git a/README.rst b/README.rst index adb4bfcb..1c2bc78c 100644 --- a/README.rst +++ b/README.rst @@ -191,12 +191,12 @@ and pytest's many contributors, this project would not have been possible. Thank Citation -------- -If you rely on pytask for your research, please cite it with +If you rely on pytask to manage your research project, please cite it with .. code-block:: @Unpublished{Raabe2020, - Title = {A Python tool for managing research workflows.}, + Title = {A Python tool for managing scientific workflows.}, Author = {Tobias Raabe}, Year = {2020}, Url = {https://github.com/pytask-dev/pytask}