Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix README.md and setup.py to allow upload on PyPI. #153

Merged
merged 1 commit into from
Nov 6, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 2 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -98,9 +98,8 @@ Then `cooker build` to restart the compilations.
Another useful sub-command is:

- `cooker clean <recipe> [<build-configs>...]` that will erase all files produced
during the compilation of a recipe (and also the shared-state-cache associated
files).

during the compilation of a recipe (and also the shared-state-cache associated
files).
- `cooker shell <build-config>` provides you a new shell into the build directory
with all the environment variables set. Some typical uses could be to
run `bitbake -c menuconfig virtual/kernel` or `runqemu qemuarm` for instance.
Expand Down
3 changes: 2 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
__title__ = 'cooker'
__title__ = 'yocto-cooker'
__version__ = '1.4.0'
__author__ = "Christophe BLAESS, Patrick BOETTCHER"
__email__ = '[email protected], [email protected]'
Expand All @@ -23,6 +23,7 @@
url=__url__,
license=__license__,
long_description=_long_description,
long_description_content_type='text/markdown',
package_data={'': ['cooker-menu-schema.json']},

packages=[
Expand Down
Loading