diff --git a/.github/dependabot.yml b/.github/dependabot.yml new file mode 100644 index 0000000..6ff13c6 --- /dev/null +++ b/.github/dependabot.yml @@ -0,0 +1,19 @@ +--- +# SPDX-FileCopyrightText: 2021 Andrew Grimberg +# SPDX-License-Identifier: Apache-2.0 + +# To get started with Dependabot version updates, you'll need to specify which +# package ecosystems to update and where the package manifests are located. +# Please see the documentation for all configuration options: +# https://docs.github.com/code-security/dependabot/dependabot-version-updates/configuration-options-for-the-dependabot.yml-file + +version: 2 +updates: + - package-ecosystem: "github-actions" + directory: "/" + schedule: + interval: "weekly" + - package-ecosystem: "pip" + directory: "/" + schedule: + interval: "weekly" diff --git a/.reuse/dep5 b/.reuse/dep5 deleted file mode 100644 index 27411db..0000000 --- a/.reuse/dep5 +++ /dev/null @@ -1,13 +0,0 @@ -Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/ - -Files: node_modules/* -Copyright: 2021 Andrew Grimberg -License: Apache-2.0 - -Files: tests/.mypy* -Copyright: 2021 Andrew Grimberg -License: Apache-2.0 - -Files: tests/__pycache__/* -Copyright: 2021 Andrew Grimberg -License: Apache-2.0 diff --git a/REUSE.toml b/REUSE.toml new file mode 100644 index 0000000..30ea264 --- /dev/null +++ b/REUSE.toml @@ -0,0 +1,19 @@ +version = 1 + +[[annotations]] +path = "node_modules/**" +precedence = "aggregate" +SPDX-FileCopyrightText = "2021 Andrew Grimberg " +SPDX-License-Identifier = "Apache-2.0" + +[[annotations]] +path = "tests/.mypy**" +precedence = "aggregate" +SPDX-FileCopyrightText = "2021 Andrew Grimberg " +SPDX-License-Identifier = "Apache-2.0" + +[[annotations]] +path = "tests/__pycache__/**" +precedence = "aggregate" +SPDX-FileCopyrightText = "2021 Andrew Grimberg " +SPDX-License-Identifier = "Apache-2.0"