mirror of
https://github.com/openembedded/meta-openembedded.git
synced 2025-07-19 15:29:08 +02:00

Changelog: ========= Main Changes ------------ Add pyenv's .python-version into .gitignore, #576 Added more --very-verbose logging to make clearer what's going on, #578 Updated versions of containers in CI config, #583 Fixed coverage config template for namespaced packages, #610 Replaced internal appdirs dependency with platformdirs, #584 Documentation Changes --------------------- Mention python -m setuptools_scm as a form of debugging, #574 Mention setting the default branch in git in docs, #577 Fix documented path to pyscaffold/default.cfg, #580 Signed-off-by: Wang Mingyu <wangmy@fujitsu.com> Signed-off-by: Khem Raj <raj.khem@gmail.com> Signed-off-by: Trevor Gamblin <trevor.gamblin@windriver.com>
23 lines
717 B
BlitzBasic
23 lines
717 B
BlitzBasic
SUMMARY = "Python project template generator with batteries included"
|
|
DESCRIPTION = "PyScaffold package helps to setup a new Python project. \
|
|
After installation, it provides a new command [putup], which could be \
|
|
used to create template Projects."
|
|
|
|
HOMEPAGE = "https://github.com/pyscaffold/pyscaffold"
|
|
SECTION = "devel/python"
|
|
LICENSE = "0BSD & MIT"
|
|
LIC_FILES_CHKSUM = "file://LICENSE.txt;md5=14a49c74a1d91829908ac756c07e6b91"
|
|
DEPENDS += "python3-setuptools-scm-native"
|
|
|
|
SRC_URI[sha256sum] = "55f6532fd6d62b3b698d604257f7a7eda6a87557bbec22760f8c0d9549454802"
|
|
|
|
inherit pypi setuptools3
|
|
PYPI_PACKAGE = "PyScaffold"
|
|
|
|
RDEPENDS:${PN} += " \
|
|
python3-email \
|
|
python3-compression \
|
|
"
|
|
|
|
BBCLASSEXTEND = "native nativesdk"
|