From 5866d8f12aebee76eac16897ccaef3d83f01c9e5 Mon Sep 17 00:00:00 2001 From: Eternal Reclaimer <98760976+kyegomez@users.noreply.github.com> Date: Mon, 2 Oct 2023 08:48:55 -0400 Subject: [PATCH] Initial commit --- .github/FUNDING.yml | 13 ++ .github/ISSUE_TEMPLATE/bug_report.md | 27 ++++ .github/ISSUE_TEMPLATE/feature_request.md | 20 +++ .github/PULL_REQUEST_TEMPLATE.yml | 22 +++ .github/dependabot.yml | 14 ++ .github/workflows/docs.yml | 19 +++ .github/workflows/label.yml | 22 +++ .github/workflows/publish.yml | 43 ++++++ .github/workflows/pull-request-links.yml | 18 +++ .github/workflows/pylint.yml | 23 ++++ .github/workflows/python-publish.yml | 32 +++++ .github/workflows/stale.yml | 27 ++++ .github/workflows/test.yml | 49 +++++++ .github/workflows/unit-test.yml | 45 ++++++ .github/workflows/welcome.yml | 18 +++ .gitignore | 161 ++++++++++++++++++++++ LICENSE | 21 +++ README.md | 27 ++++ agorabanner.png | Bin 0 -> 198637 bytes example.py | 0 pyproject.toml | 29 ++++ requirements.txt | 0 22 files changed, 630 insertions(+) create mode 100644 .github/FUNDING.yml create mode 100644 .github/ISSUE_TEMPLATE/bug_report.md create mode 100644 .github/ISSUE_TEMPLATE/feature_request.md create mode 100644 .github/PULL_REQUEST_TEMPLATE.yml create mode 100644 .github/dependabot.yml create mode 100644 .github/workflows/docs.yml create mode 100644 .github/workflows/label.yml create mode 100644 .github/workflows/publish.yml create mode 100644 .github/workflows/pull-request-links.yml create mode 100644 .github/workflows/pylint.yml create mode 100644 .github/workflows/python-publish.yml create mode 100644 .github/workflows/stale.yml create mode 100644 .github/workflows/test.yml create mode 100644 .github/workflows/unit-test.yml create mode 100644 .github/workflows/welcome.yml create mode 100644 .gitignore create mode 100644 LICENSE create mode 100644 README.md create mode 100644 agorabanner.png create mode 100644 example.py create mode 100644 pyproject.toml create mode 100644 requirements.txt diff --git a/.github/FUNDING.yml b/.github/FUNDING.yml new file mode 100644 index 0000000..c626b00 --- /dev/null +++ b/.github/FUNDING.yml @@ -0,0 +1,13 @@ +# These are supported funding model platforms + +github: [kyegomez] +patreon: # Replace with a single Patreon username +open_collective: # Replace with a single Open Collective username +ko_fi: # Replace with a single Ko-fi username +tidelift: # Replace with a single Tidelift platform-name/package-name e.g., npm/babel +community_bridge: # Replace with a single Community Bridge project-name e.g., cloud-foundry +liberapay: # Replace with a single Liberapay username +issuehunt: # Replace with a single IssueHunt username +otechie: # Replace with a single Otechie username +lfx_crowdfunding: # Replace with a single LFX Crowdfunding project-name e.g., cloud-foundry +custom: #Nothing diff --git a/.github/ISSUE_TEMPLATE/bug_report.md b/.github/ISSUE_TEMPLATE/bug_report.md new file mode 100644 index 0000000..d43f812 --- /dev/null +++ b/.github/ISSUE_TEMPLATE/bug_report.md @@ -0,0 +1,27 @@ +--- +name: Bug report +about: Create a detailed report on the bug and it's root cause. Conduct root cause error analysis +title: "[BUG] " +labels: bug +assignees: kyegomez + +--- + +**Describe the bug** +A clear and concise description of what the bug is and what the main root cause error is. Test very thoroughly before submitting. + +**To Reproduce** +Steps to reproduce the behavior: +1. Go to '...' +2. Click on '....' +3. Scroll down to '....' +4. See error + +**Expected behavior** +A clear and concise description of what you expected to happen. + +**Screenshots** +If applicable, add screenshots to help explain your problem. + +**Additional context** +Add any other context about the problem here. diff --git a/.github/ISSUE_TEMPLATE/feature_request.md b/.github/ISSUE_TEMPLATE/feature_request.md new file mode 100644 index 0000000..806abd7 --- /dev/null +++ b/.github/ISSUE_TEMPLATE/feature_request.md @@ -0,0 +1,20 @@ +--- +name: Feature request +about: Suggest an idea for this project +title: '' +labels: '' +assignees: 'kyegomez' + +--- + +**Is your feature request related to a problem? Please describe.** +A clear and concise description of what the problem is. Ex. I'm always frustrated when [...] + +**Describe the solution you'd like** +A clear and concise description of what you want to happen. + +**Describe alternatives you've considered** +A clear and concise description of any alternative solutions or features you've considered. + +**Additional context** +Add any other context or screenshots about the feature request here. diff --git a/.github/PULL_REQUEST_TEMPLATE.yml b/.github/PULL_REQUEST_TEMPLATE.yml new file mode 100644 index 0000000..8e03012 --- /dev/null +++ b/.github/PULL_REQUEST_TEMPLATE.yml @@ -0,0 +1,22 @@ +