Skip to content

Commit

Permalink
Updated dependencies, Updated README
Browse files Browse the repository at this point in the history
  • Loading branch information
Buried-In-Code committed Oct 1, 2021
1 parent c75b609 commit 1ed8b0a
Show file tree
Hide file tree
Showing 9 changed files with 117 additions and 104 deletions.
4 changes: 3 additions & 1 deletion .editorconfig
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,9 @@ tab_width = 4
indent_size = 2
tab_width = 2

[{*.har,*.json}]
[{*.har,*.json,*.jsonschema}]
indent_size = 2
tab_width = 2

[{*.markdown,*.md}]
indent_style = space
Expand All @@ -24,3 +25,4 @@ indent_style = space

[{*.yaml,*.yml}]
indent_size = 2
tab_width = 2
16 changes: 8 additions & 8 deletions .github/dependabot.yaml
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
version: 2
updates:
- package-ecosystem: 'pip'
directory: '/'
- package-ecosystem: "pip"
directory: "/"
schedule:
interval: 'daily'
interval: "daily"
labels:
- 'Type: Maintenance'
- package-ecosystem: 'github-actions'
directory: '/'
- "Type: Maintenance"
- package-ecosystem: "github-actions"
directory: "/"
schedule:
interval: 'daily'
interval: "daily"
labels:
- 'Type: Maintenance'
- "Type: Maintenance"
4 changes: 2 additions & 2 deletions .github/workflows/code-analysis.yaml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: 'Code Analysis'
name: "Code Analysis"

on:
push:
Expand All @@ -8,7 +8,7 @@ on:
branches:
- main
schedule:
- cron: '30 0 * * 1'
- cron: "30 0 * * 1"

jobs:
analyze:
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/publishing.yaml
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
name: 'Publishing'
name: "Publishing"

on:
push:
tags:
- '[0-9]+.[0-9]+.[0-9]+'
- "[0-9]+.[0-9]+.[0-9]+"

jobs:
pypi:
name: 'Publish to PyPI'
name: "Publish to PyPI"
strategy:
fail-fast: false
matrix:
Expand Down Expand Up @@ -59,4 +59,4 @@ jobs:
- name: Set PyPI Token
run: poetry config pypi-token.pypi '${{ secrets.PYPI_TOKEN }}'
- name: Publish Project
run: poetry publish --build
run: poetry publish --build
8 changes: 4 additions & 4 deletions .github/workflows/testing.yaml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: 'Testing'
name: "Testing"

on:
push:
Expand All @@ -10,7 +10,7 @@ on:

jobs:
tox:
name: 'Tox Tests'
name: "Tox Tests"
strategy:
fail-fast: false
matrix:
Expand All @@ -23,7 +23,7 @@ jobs:
- macos-latest
- windows-latest
env:
COMICVINE_API_KEY: 'Testing-Key'
COMICVINE_API_KEY: "Testing-Key"
runs-on: ${{ matrix.os }}
steps:
#----------------------------------------------
Expand Down Expand Up @@ -66,4 +66,4 @@ jobs:
# Run tox testing
#----------------------------------------------
- name: Test with tox
run: poetry run tox -e py
run: poetry run tox -e py
16 changes: 8 additions & 8 deletions .pre-commit-config.yaml
Original file line number Diff line number Diff line change
@@ -1,21 +1,21 @@
repos:
- repo: https://gitlab.com/pycqa/flake8
rev: 3.9.2
- repo: https://github.com/asottile/pyupgrade
rev: v2.29.0
hooks:
- id: flake8
additional_dependencies: [flake8-docstrings, flake8-rst-docstrings]
- id: pyupgrade
- repo: https://github.com/ambv/black
rev: 21.9b0
hooks:
- id: black
- repo: https://gitlab.com/pycqa/flake8
rev: 3.9.2
hooks:
- id: flake8
additional_dependencies: [flake8-docstrings, flake8-rst-docstrings]
- repo: https://github.com/pycqa/isort
rev: 5.9.3
hooks:
- id: isort
- repo: https://github.com/asottile/pyupgrade
rev: v2.27.0
hooks:
- id: pyupgrade
- repo: https://github.com/asottile/seed-isort-config
rev: v2.2.0
hooks:
Expand Down
26 changes: 16 additions & 10 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,16 +1,18 @@
# Simyan

[![PyPI - Python](https://img.shields.io/pypi/pyversions/Simyan.svg?logo=PyPI&label=Python-Versions&style=flat-square)](https://pypi.python.org/pypi/Simyan/)
[![PyPI - Status](https://img.shields.io/pypi/status/Simyan.svg?logo=PyPI&label=Status&style=flat-square)](https://pypi.python.org/pypi/Simyan/)
[![PyPI - Version](https://img.shields.io/pypi/v/Simyan.svg?logo=PyPI&label=Version&style=flat-square)](https://pypi.python.org/pypi/Simyan/)
[![PyPI - License](https://img.shields.io/pypi/l/Simyan.svg?logo=PyPI&label=License&style=flat-square)](https://opensource.org/licenses/GPL-3.0)
[![PyPI - Python](https://img.shields.io/pypi/pyversions/Simyan.svg?logo=PyPI&label=Python&style=for-the-badge)](https://pypi.python.org/pypi/Simyan/)
[![PyPI - Status](https://img.shields.io/pypi/status/Simyan.svg?logo=PyPI&label=Status&style=for-the-badge)](https://pypi.python.org/pypi/Simyan/)
[![PyPI - Version](https://img.shields.io/pypi/v/Simyan.svg?logo=PyPI&label=Version&style=for-the-badge)](https://pypi.python.org/pypi/Simyan/)
[![PyPI - License](https://img.shields.io/pypi/l/Simyan.svg?logo=PyPI&label=License&style=for-the-badge)](https://opensource.org/licenses/GPL-3.0)

[![Github - Contributors](https://img.shields.io/github/contributors/Buried-In-Code/Simyan.svg?logo=Github&label=Contributors&style=flat-square)](https://github.com/Buried-In-Code/Simyan/graphs/contributors)
[![Github Action - Code Analysis](https://img.shields.io/github/workflow/status/Buried-In-Code/Simyan/Code-Analysis?logo=Github-Actions&label=Code-Analysis&style=flat-square)](https://github.com/Buried-In-Code/Simyan/actions/workflows/code-analysis.yaml)
[![Github Action - Testing](https://img.shields.io/github/workflow/status/Buried-In-Code/Simyan/Testing?logo=Github-Actions&label=Tests&style=flat-square)](https://github.com/Buried-In-Code/Simyan/actions/workflows/testing.yaml)
[![Github - Contributors](https://img.shields.io/github/contributors/Buried-In-Code/Simyan.svg?logo=Github&label=Contributors&style=for-the-badge)](https://github.com/Buried-In-Code/Simyan/graphs/contributors)

[![Read the Docs](https://img.shields.io/readthedocs/simyan?label=Read-the-Docs&logo=Read-the-Docs&style=flat-square)](https://simyan.readthedocs.io/en/latest/?badge=latest)
[![Code Style - Black](https://img.shields.io/badge/Code--Style-Black-000000.svg?style=flat-square)](https://github.com/psf/black)
[![Github Action - Code Analysis](https://img.shields.io/github/workflow/status/Buried-In-Code/Simyan/Code-Analysis?logo=Github-Actions&label=Code-Analysis&style=for-the-badge)](https://github.com/Buried-In-Code/Simyan/actions/workflows/code-analysis.yaml)
[![Github Action - Testing](https://img.shields.io/github/workflow/status/Buried-In-Code/Simyan/Testing?logo=Github-Actions&label=Tests&style=for-the-badge)](https://github.com/Buried-In-Code/Simyan/actions/workflows/testing.yaml)

[![Read the Docs](https://img.shields.io/readthedocs/simyan?label=Read-the-Docs&logo=Read-the-Docs&style=for-the-badge)](https://simyan.readthedocs.io/en/latest/?badge=latest)

[![Code Style - Black](https://img.shields.io/badge/Code--Style-Black-000000.svg?style=for-the-badge)](https://github.com/psf/black)

A [Python](https://www.python.org/) wrapper for the [Comicvine](https://comicvine.gamespot.com/api/) API.

Expand Down Expand Up @@ -60,4 +62,8 @@ print(result.description)

Big thanks to [Mokkari](https://github.com/bpepple/mokkari) for the inspiration and template for this project.

[![Social - Discord](https://img.shields.io/discord/618581423070117932.svg?logo=Discord&label=The-DEV-Environment&style=flat-square&colorB=7289da)](https://discord.gg/nqGMeGg)
[![Social - Discord](https://img.shields.io/discord/618581423070117932.svg?logo=Discord&label=The-DEV-Environment&style=for-the-badge&colorB=7289da)](https://discord.gg/nqGMeGg)

![Social - Email](https://img.shields.io/badge/Email-BuriedInCode@tuta.io-red?style=for-the-badge&logo=Tutanota&logoColor=red)

[![Social - Twitter](https://img.shields.io/badge/Twitter-@BuriedInCode-blue?style=for-the-badge&logo=Twitter)](https://twitter.com/BuriedInCode)
Loading

0 comments on commit 1ed8b0a

Please sign in to comment.