Skip to content

Commit

Permalink
feat(proj): Add pyup.io scanning and badge #165 (#169)
Browse files Browse the repository at this point in the history
Pyup scanning improves project security.

closes # 165
  • Loading branch information
imAsparky committed Nov 13, 2021
1 parent 386894b commit 02677d5
Show file tree
Hide file tree
Showing 2 changed files with 41 additions and 0 deletions.
38 changes: 38 additions & 0 deletions .pyup.yml
@@ -0,0 +1,38 @@
# configure updates globally
# default: all
# allowed: all, insecure, False
update: all

# configure dependency pinning globally
# default: True
# allowed: True, False
pin: True

# set the default branch
# default: empty, the default branch on GitHub
Default Branch: main

# assign users to pull requests, default is not set
# requires private repo permissions, even on public repos
# default: empty
assignees:
- imAsparky

# add a label to pull requests, default is not set
# requires private repo permissions, even on public repos
# default: empty
label_prs:

# set a global prefix for PRs
# default: empty
pr_prefix: "fix(pyup): "

# allow to close stale PRs
# default: True
close_prs: False

requirements:
- "requirements_dev.txt"
- "docs/requirements.txt"
- "{{cookiecutter.git_project_name}}/requirements_dev.txt"
- "{{cookiecutter.git_project_name}}/docs/requirements.txt"
3 changes: 3 additions & 0 deletions README.rst
Expand Up @@ -26,6 +26,9 @@ workflow experience.**
:alt: Project Status: WIP – Initial development is in progress, but there has not yet been a stable, usable release suitable for the public.
:target: https://www.repostatus.org/#wip

.. image:: https://pyup.io/repos/github/imAsparky/cookiecutter-py3-pacakge/shield.svg
:target: https://pyup.io/repos/github/imAsparky/cookiecutter-py3-pacakge/

.. image:: http://isitmaintained.com/badge/resolution/imAsparky/cookiecutter-py3-package.svg
:alt: Project is Maintained
:target: https://isitmaintained.com/project/imAsparky/cookiecutter-py3-package
Expand Down

0 comments on commit 02677d5

Please sign in to comment.