forked from intel/bmap-tools
-
Notifications
You must be signed in to change notification settings - Fork 14
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Drops poetry support and instead uses hatch to build wheels. Developers can easily hack on the project using a virtual environment as described in the README.md Closes #6 Signed-off-by: Joshua Watt <[email protected]>
- Loading branch information
Showing
7 changed files
with
88 additions
and
238 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 |
---|---|---|
|
@@ -58,6 +58,7 @@ docs/_build/ | |
|
||
# virtualenv | ||
venv/ | ||
.venv/ | ||
ENV/ | ||
|
||
#vscode | ||
|
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.
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,22 +1,48 @@ | ||
[tool.poetry] | ||
[project] | ||
name = "bmaptool" | ||
version = "3.7.0" | ||
license = "GPL-2.0-only" | ||
description = "BMAP tools" | ||
authors = ["Trevor Woerner <[email protected]>"] | ||
dynamic = ["version"] | ||
dependencies = [ | ||
"six >= 1.16.0", | ||
"gpg >= 1.10.0", | ||
] | ||
required-python = ">= 3.8" | ||
authors = [ | ||
{name = "Joshua Watt", email = "[email protected]"}, | ||
{name = "Trevor Woerner", email = "[email protected]"}, | ||
{name = "Tim Orling", email = "[email protected]"}, | ||
|
||
[tool.poetry.dependencies] | ||
python = "^3.8" | ||
six = "^1.16.0" | ||
gpg = "^1.10.0" | ||
] | ||
readme = "README.md" | ||
classifiers = [ | ||
"Development Status :: 5 - Production/Stable", | ||
"Intended Audience :: Developers", | ||
"Topic :: Software Development :: Build Tools", | ||
"Topic :: Software Development :: Embedded Systems", | ||
"License :: OSI Approved :: GNU General Public License v2 (GPLv2)", | ||
"Programming Language :: Python :: 3", | ||
"Programming Language :: Python :: 3.8", | ||
"Programming Language :: Python :: 3.9", | ||
"Programming Language :: Python :: 3.10", | ||
] | ||
|
||
[tool.poetry.dev-dependencies] | ||
black = "^22.3.0" | ||
nose = "^1.3.7" | ||
[project.optional-dependencies] | ||
dev = [ | ||
"black >= 22.3.0", | ||
"nose >= 1.3.7", | ||
] | ||
|
||
[tool.poetry.scripts] | ||
[project.urls] | ||
Homepage = "https://github.com/yoctoproject/bmaptool" | ||
Repository = "https://github.com/yoctoproject/bmaptool.git" | ||
Issues = "https://github.com/yoctoproject/bmaptool/issues" | ||
|
||
[project.scripts] | ||
bmaptool = "bmaptool.CLI:main" | ||
|
||
[build-system] | ||
requires = ["poetry-core>=1.0.0"] | ||
build-backend = "poetry.core.masonry.api" | ||
requires = ["hatchling"] | ||
build-backend = "hatchling.build" | ||
|
||
[tool.hatch.version] | ||
path = "src/bmaptool/CLI.py" |
This file was deleted.
Oops, something went wrong.