From 65accba800475ecdb7d715dfc805ad78dc951c22 Mon Sep 17 00:00:00 2001 From: VNMabus Date: Tue, 16 Jan 2024 12:17:41 +0100 Subject: [PATCH] Add allcontributors. --- .all-contributorsrc | 122 +++++++++++++++++++++++++++++++++++++++++++ CONTRIBUTORS.md | 42 +++++++++++++++ docs/conf.py | 1 + docs/contributors.md | 2 + docs/index.rst | 1 + pyproject.toml | 1 + 6 files changed, 169 insertions(+) create mode 100644 .all-contributorsrc create mode 100644 CONTRIBUTORS.md create mode 100644 docs/contributors.md diff --git a/.all-contributorsrc b/.all-contributorsrc new file mode 100644 index 0000000..cd830ad --- /dev/null +++ b/.all-contributorsrc @@ -0,0 +1,122 @@ +{ + "projectName": "rdata", + "projectOwner": "VNMabus", + "repoType": "github", + "repoHost": "https://github.com", + "files": [ + "CONTRIBUTORS.md" + ], + "imageSize": 100, + "commit": false, + "commitConvention": "none", + "contributors": [ + { + "login": "vnmabus", + "name": "Carlos Ramos Carreño", + "avatar_url": "https://avatars.githubusercontent.com/u/2364173?v=4", + "profile": "https://github.com/vnmabus", + "contributions": [ + "code", + "data", + "doc", + "example", + "ideas", + "infra", + "maintenance", + "projectManagement", + "question", + "review", + "test", + "tutorial" + ] + }, + { + "login": "", + "name": "CSC - IT Center for Science Ltd", + "avatar_url": "https://upload.wikimedia.org/wikipedia/en/6/6e/CSC_%E2%80%93_IT_Center_for_Science_%28logo%29.jpg", + "profile": "https://www.csc.fi", + "contributions": [ + { + "type": "code", + "url": "https://github.com/vnmabus/rdata/commits?author=trossi" + } + ] + }, + { + "login": "trossi", + "name": "Tuomas Rossi", + "avatar_url": "https://avatars.githubusercontent.com/u/34502776?v=4", + "profile": "https://github.com/trossi", + "contributions": [ + "code", + "ideas", + "bug" + ] + }, + { + "login": "VolodyaCO", + "name": "Vladimir Vargas-Calderón", + "avatar_url": "https://avatars.githubusercontent.com/u/31494271?v=4", + "profile": "https://www.researchgate.net/profile/Vladimir_Vargas-Calderon", + "contributions": [ + "bug" + ] + }, + { + "login": "Jorgelindo238", + "name": "Jorgelindo", + "avatar_url": "https://avatars.githubusercontent.com/u/79350063?v=4", + "profile": "https://jorgelindodaveiga.myportfolio.com/", + "contributions": [ + "bug" + ] + }, + { + "login": "zoj613", + "name": "zoj613", + "avatar_url": "https://avatars.githubusercontent.com/u/44142765?v=4", + "profile": "https://github.com/zoj613", + "contributions": [ + "bug" + ] + }, + { + "login": "schlegelp", + "name": "Philipp Schlegel", + "avatar_url": "https://avatars.githubusercontent.com/u/7161148?v=4", + "profile": "https://github.com/schlegelp", + "contributions": [ + "bug" + ] + }, + { + "login": "deeenes", + "name": "deeenes", + "avatar_url": "https://avatars.githubusercontent.com/u/2679889?v=4", + "profile": "https://denes.omnipathdb.org/", + "contributions": [ + "bug" + ] + }, + { + "login": "soheila-sahami", + "name": "Soheila", + "avatar_url": "https://avatars.githubusercontent.com/u/9429831?v=4", + "profile": "https://github.com/soheila-sahami", + "contributions": [ + "ideas" + ] + }, + { + "login": "userLUX", + "name": "userLUX", + "avatar_url": "https://avatars.githubusercontent.com/u/107994632?v=4", + "profile": "https://github.com/userLUX", + "contributions": [ + "bug" + ] + } + ], + "contributorsPerLine": 7, + "linkToUsage": true +} diff --git a/CONTRIBUTORS.md b/CONTRIBUTORS.md new file mode 100644 index 0000000..448689d --- /dev/null +++ b/CONTRIBUTORS.md @@ -0,0 +1,42 @@ + +## Contributors ✨ + +Thanks goes to these wonderful people ([emoji key](https://allcontributors.org/docs/en/emoji-key)): + + + + + + + + + + + + + + + + + + + + + + + + + + +
Carlos Ramos Carreño
Carlos Ramos Carreño

💻 🔣 📖 💡 🤔 🚇 🚧 📆 💬 👀 ⚠️
CSC - IT Center for Science Ltd
CSC - IT Center for Science Ltd

💻
Tuomas Rossi
Tuomas Rossi

💻 🤔 🐛
Vladimir Vargas-Calderón
Vladimir Vargas-Calderón

🐛
Jorgelindo
Jorgelindo

🐛
zoj613
zoj613

🐛
Philipp Schlegel
Philipp Schlegel

🐛
deeenes
deeenes

🐛
Soheila
Soheila

🤔
userLUX
userLUX

🐛
+ + Add your contributions + +
+ + + + + + +This project follows the [all-contributors](https://github.com/all-contributors/all-contributors) specification. Contributions of any kind welcome! \ No newline at end of file diff --git a/docs/conf.py b/docs/conf.py index 1bafca9..13261b1 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -64,6 +64,7 @@ # extensions coming with Sphinx (named 'sphinx.ext.*') or your custom # ones. extensions = [ + "myst_parser", "sphinx.ext.autodoc", "sphinx.ext.autosummary", "sphinx.ext.intersphinx", diff --git a/docs/contributors.md b/docs/contributors.md new file mode 100644 index 0000000..3cf0155 --- /dev/null +++ b/docs/contributors.md @@ -0,0 +1,2 @@ +```{include} ../CONTRIBUTORS.md +``` \ No newline at end of file diff --git a/docs/index.rst b/docs/index.rst index 6a2367d..158ec87 100644 --- a/docs/index.rst +++ b/docs/index.rst @@ -33,6 +33,7 @@ Its main advantages are: apilist auto_examples/index Try online! + contributors The package rdata is developed `on Github `_. Please report `issues `_ there diff --git a/pyproject.toml b/pyproject.toml index 75f419f..4df409c 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -49,6 +49,7 @@ docs = [ "jupyterlite-sphinx", "jupyterlite-pyodide-kernel", "matplotlib", + "myst-parser", "pydata-sphinx-theme", "sphinx>=3.1", "sphinx-gallery",