From e3def608f13f681beb8552982f72e45d98dcafe0 Mon Sep 17 00:00:00 2001 From: Alex Root Junior Date: Fri, 27 Oct 2023 00:48:47 +0300 Subject: [PATCH] Add CITATION.cff for automatic academic citation (#1351) * Add CITATION.cff for automatic academic citation A `CITATION.cff` file has been added to the project to facilitate the generation of accurate academic citations directly from the GitHub page. This allows users to easily copy the citation and paste it into their academic papers. The file includes the project's information like title, authors, repository code, url, keywords, and license. * Fixed category name --- CHANGES/1351.doc.rst | 2 ++ CITATION.cff | 23 +++++++++++++++++++++++ 2 files changed, 25 insertions(+) create mode 100644 CHANGES/1351.doc.rst create mode 100644 CITATION.cff diff --git a/CHANGES/1351.doc.rst b/CHANGES/1351.doc.rst new file mode 100644 index 00000000..5108d25e --- /dev/null +++ b/CHANGES/1351.doc.rst @@ -0,0 +1,2 @@ +Added `CITATION.cff` file for automatic academic citation generation. +Now you can copy citation from the GitHub page and paste it into your paper. diff --git a/CITATION.cff b/CITATION.cff new file mode 100644 index 00000000..0d89ccef --- /dev/null +++ b/CITATION.cff @@ -0,0 +1,23 @@ +# This CITATION.cff file was generated with cffinit. +# Visit https://bit.ly/cffinit to generate yours today! + +cff-version: 1.2.0 +title: aiogram +message: >- + If you use this software, please cite it using the + metadata from this file. +type: software +authors: + - given-names: Oleksandr + family-names: O + email: im@aiogram.dev +repository-code: 'https://github.com/aiogram/aiogram' +url: 'https://aiogram.dev' +abstract: >- + aiogram is a modern and fully asynchronous framework for + Telegram Bot API written in Python using asyncio +keywords: + - aiogram + - telegram + - bot +license: MIT