-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Switch to poetry for requirements management.
Poetry allows for much finer control of requirements over stock requirements.txt.
- Loading branch information
Showing
9 changed files
with
894 additions
and
21 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
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,28 @@ | ||
# Changelog | ||
|
||
All notable changes to this project will be documented in this file. | ||
|
||
This file's format is based on [Keep a Changelog](http://keepachangelog.com/) | ||
and this project adheres to [Semantic Versioning](http://semver.org/). The | ||
version number is tracked in the file `pyproject.toml`. | ||
|
||
Contact: See pyproject.toml authors | ||
Status: Available for use | ||
|
||
## [Unreleased] | ||
|
||
### Breaking Changes | ||
|
||
### Added | ||
|
||
### Fixed | ||
|
||
## [0.1.0] - 2024-05-16 | ||
|
||
### Added | ||
- Initial release | ||
|
||
### Changed | ||
|
||
[unreleased]: https://github.com/microsoft/apt-package-function/compare/0.1.0...HEAD | ||
[0.1.0]: https://github.com/microsoft/apt-package-function/tree/0.1.0 |
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 was deleted.
Oops, something went wrong.
Large diffs are not rendered by default.
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,22 @@ | ||
[tool.poetry] | ||
name = "apt-package-function" | ||
version = "0.1.0" | ||
description = "Functionality to create a Debian package repository in Azure Blob Storage" | ||
authors = ["Max Dymond <[email protected]>"] | ||
license = "MIT" | ||
readme = "README.md" | ||
|
||
[tool.poetry.dependencies] | ||
python = "^3.8" | ||
azure-functions = "^1.19.0" | ||
azure-identity = "^1.16.0" | ||
azure-storage-blob = "^12.20.0" | ||
pydpkg = "^1.9.3" | ||
|
||
[tool.poetry.group.dev.dependencies] | ||
pylint = "^3.2.0" | ||
mypy = "^1.10.0" | ||
|
||
[build-system] | ||
requires = ["poetry-core"] | ||
build-backend = "poetry.core.masonry.api" |
This file was deleted.
Oops, something went wrong.