-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
rename project to mozilla-gcp-ar-pkg-manager
- Loading branch information
1 parent
89402f5
commit f33f0d7
Showing
11 changed files
with
34 additions
and
34 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -17,7 +17,7 @@ | |
|
||
# -- Project information ----------------------------------------------------- | ||
|
||
project = "mozilla-deb-pkg-manager" | ||
project = "mozilla-gcp-ar-pkg-manager" | ||
copyright = "2023" | ||
author = "Mozilla Release Engineering <[email protected]>" | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,14 +1,14 @@ | ||
[tool.poetry] | ||
name = "mozilla-deb-pkg-manager" | ||
name = "mozilla-gcp-ar-pkg-manager" | ||
version = "0.1.0" | ||
description = "`mozilla-releng/mozilla-deb-pkg-manager` is a Python tool for managing Mozilla `.deb` packages." | ||
description = "`mozilla-releng/mozilla-gcp-ar-pkg-manager` is a Python tool for managing Mozilla `.deb` packages." | ||
authors = ["Mozilla Release Engineering <[email protected]>"] | ||
license = "MPL-2.0" | ||
readme = "README.md" | ||
packages = [{include = "mozilla_deb_pkg_manager", from = "src"}] | ||
packages = [{include = "mozilla_gcp_ar_pkg_manager", from = "src"}] | ||
|
||
[tool.poetry.scripts] | ||
mozilla-deb-pkg-manager = 'mozilla_deb_pkg_manager.cli:main' | ||
mozilla-gcp-ar-pkg-manager = 'mozilla_gcp_ar_pkg_manager.cli:main' | ||
|
||
[tool.poetry.dependencies] | ||
python = "^3.11" | ||
|
@@ -39,7 +39,7 @@ xfail_strict = true | |
[tool.coverage.run] | ||
parallel = true | ||
branch = true | ||
source = ["src/mozilla_deb_pkg_manager/"] | ||
source = ["src/mozilla_gcp_ar_pkg_manager/"] | ||
|
||
[tool.ruff] | ||
select = [ | ||
|
@@ -55,7 +55,7 @@ ignore = [ | |
target-version = "py311" | ||
|
||
[tool.ruff.isort] | ||
known-first-party = ["mozilla_deb_pkg_manager"] | ||
known-first-party = ["mozilla_gcp_ar_pkg_manager"] | ||
|
||
[build-system] | ||
requires = ["poetry-core"] | ||
|
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
import mozilla_gcp_ar_pkg_manager.cli as cli # noqa |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,12 +1,12 @@ | ||
import sys | ||
import types | ||
|
||
import mozilla_deb_pkg_manager # noqa | ||
import mozilla_gcp_ar_pkg_manager # noqa | ||
|
||
|
||
def test_mozilla_deb_pkg_manager(): | ||
assert "mozilla_deb_pkg_manager" in sys.modules | ||
def test_mozilla_gcp_ar_pkg_manager(): | ||
assert "mozilla_gcp_ar_pkg_manager" in sys.modules | ||
|
||
|
||
def test_cli(): | ||
assert isinstance(mozilla_deb_pkg_manager.cli, types.ModuleType) | ||
assert isinstance(mozilla_gcp_ar_pkg_manager.cli, types.ModuleType) |