-
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.
fix bug in package building config, decouple uoft_core.prompt.Prompt …
…from uoft_core.Util, add fuzzy completion flag to uoft_core.prompt.Prompt's get_from_choices and get_path methods, add invoke tasks for inspecting the contents of built packages
- Loading branch information
1 parent
dc08b41
commit 12c18bb
Showing
9 changed files
with
90 additions
and
20 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -4,7 +4,7 @@ version = "0.0" # This field will be auto-populated by pyproject.py | |
description = "Collection of utilities for interacting with Aruba infrastructure" | ||
authors = [ | ||
{ name = "Kyle Fozo", email = "[email protected]" }, | ||
{ name = "University of Toronto Governing Council", email = "governing.council@utoronto.ca" }, | ||
{ name = "University of Toronto", email = "alex.tremblay@utoronto.ca" }, | ||
] | ||
requires-python = ">=3.10" | ||
readme = "README.md" | ||
|
@@ -25,3 +25,6 @@ build-backend = "hatchling.build" | |
|
||
[tool.hatch.metadata.hooks.custom] | ||
path = "pyproject.py" | ||
|
||
[tool.hatch.build] | ||
only-packages = true |
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 |
---|---|---|
|
@@ -5,7 +5,7 @@ description = "an opinionated set of utilities designed to be easily included in | |
readme = "README.md" | ||
authors = [ | ||
{ name = "Alex Tremblay", email = "[email protected]" }, | ||
{ name = "University of Toronto", email = "" } | ||
{ name = "University of Toronto", email = "[email protected]" } | ||
] | ||
license = "MIT" | ||
requires-python = ">=3.10" | ||
|
@@ -33,3 +33,6 @@ build-backend = "hatchling.build" | |
|
||
[tool.hatch.metadata.hooks.custom] | ||
path = "pyproject.py" | ||
|
||
[tool.hatch.build] | ||
only-packages = true |
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 |
---|---|---|
|
@@ -5,7 +5,7 @@ description = "A collection of UofT-specific modifications and extensions to Nau | |
readme = "README.md" | ||
authors = [ | ||
{ name = "Alex Tremblay", email = "[email protected]" }, | ||
{ name = "University of Toronto Governing Council", email = "governing.council@utoronto.ca" }, | ||
{ name = "University of Toronto", email = "alex.tremblay@utoronto.ca" }, | ||
] | ||
license = "MIT" | ||
requires-python = ">=3.10" | ||
|
@@ -34,4 +34,4 @@ build-backend = "hatchling.build" | |
path = "pyproject.py" | ||
|
||
[tool.hatch.build] | ||
packages = ["uoft_nautobot"] | ||
only-packages = true |
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 |
---|---|---|
|
@@ -5,7 +5,7 @@ description = "a collection of scripts and one-off tools" | |
readme = "README.md" | ||
authors = [ | ||
{ name = "Alex Tremblay", email = "[email protected]" }, | ||
{ name = "University of Toronto Governing Council", email = "governing.council@utoronto.ca" }, | ||
{ name = "University of Toronto", email = "alex.tremblay@utoronto.ca" }, | ||
] | ||
license = "MIT" | ||
requires-python = ">=3.10" | ||
|
@@ -27,3 +27,6 @@ build-backend = "hatchling.build" | |
|
||
[tool.hatch.metadata.hooks.custom] | ||
path = "pyproject.py" | ||
|
||
[tool.hatch.build] | ||
only-packages = true |
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 |
---|---|---|
|
@@ -5,7 +5,7 @@ description = "A tool to easily provision switches on the bench" | |
readme = "README.md" | ||
authors = [ | ||
{ name = "Alex Tremblay", email = "[email protected]" }, | ||
{ name = "University of Toronto Governing Council", email = "governing.council@utoronto.ca" }, | ||
{ name = "University of Toronto", email = "alex.tremblay@utoronto.ca" }, | ||
] | ||
license = "MIT" | ||
requires-python = ">=3.10" | ||
|
@@ -30,4 +30,7 @@ requires = ["hatchling >= 1.6.0", "setuptools_scm"] | |
build-backend = "hatchling.build" | ||
|
||
[tool.hatch.metadata.hooks.custom] | ||
path = "pyproject.py" | ||
path = "pyproject.py" | ||
|
||
[tool.hatch.build] | ||
only-packages = true |
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