bitp 1.0.6__py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.

Potentially problematic release.


This version of bitp might be problematic. Click here for more details.

@@ -0,0 +1,88 @@
1
+ #
2
+ # Copyright (C) 2025 Bruce Ashfield <bruce.ashfield@gmail.com>
3
+ #
4
+ # SPDX-License-Identifier: GPL-2.0-only
5
+ #
6
+ """
7
+ BitBake project helper.
8
+
9
+ A command-line tool for managing BitBake/Yocto projects.
10
+ """
11
+
12
+ __version__ = "1.0.0"
13
+ __author__ = "Bruce Ashfield <bruce.ashfield@gmail.com>"
14
+
15
+ from .core import (
16
+ Colors,
17
+ GitRepo,
18
+ FzfMenu,
19
+ fzf_available,
20
+ fzf_expandable_menu,
21
+ parse_help_options,
22
+ FZF_THEMES,
23
+ FZF_TEXT_COLORS,
24
+ FZF_COLOR_ELEMENTS,
25
+ COLOR_VALUES,
26
+ get_fzf_theme,
27
+ get_fzf_text_color,
28
+ get_fzf_color_args,
29
+ get_custom_colors,
30
+ set_custom_color,
31
+ clear_custom_colors,
32
+ run_fzf,
33
+ set_fzf_theme,
34
+ set_fzf_text_color,
35
+ get_current_theme_name,
36
+ get_current_text_color_name,
37
+ fzf_theme_picker,
38
+ fzf_text_color_picker,
39
+ fzf_custom_color_menu,
40
+ git_toplevel,
41
+ current_branch,
42
+ current_head,
43
+ repo_is_clean,
44
+ load_defaults,
45
+ save_defaults,
46
+ load_prep_state,
47
+ save_prep_state,
48
+ load_export_state,
49
+ save_export_state,
50
+ )
51
+
52
+ __all__ = [
53
+ "Colors",
54
+ "GitRepo",
55
+ "FzfMenu",
56
+ "fzf_available",
57
+ "fzf_expandable_menu",
58
+ "parse_help_options",
59
+ "FZF_THEMES",
60
+ "FZF_TEXT_COLORS",
61
+ "FZF_COLOR_ELEMENTS",
62
+ "COLOR_VALUES",
63
+ "get_fzf_theme",
64
+ "get_fzf_text_color",
65
+ "get_fzf_color_args",
66
+ "get_custom_colors",
67
+ "set_custom_color",
68
+ "clear_custom_colors",
69
+ "run_fzf",
70
+ "set_fzf_theme",
71
+ "set_fzf_text_color",
72
+ "get_current_theme_name",
73
+ "get_current_text_color_name",
74
+ "fzf_theme_picker",
75
+ "fzf_text_color_picker",
76
+ "fzf_custom_color_menu",
77
+ "git_toplevel",
78
+ "current_branch",
79
+ "current_head",
80
+ "repo_is_clean",
81
+ "load_defaults",
82
+ "save_defaults",
83
+ "load_prep_state",
84
+ "save_prep_state",
85
+ "load_export_state",
86
+ "save_export_state",
87
+ "__version__",
88
+ ]
@@ -0,0 +1,14 @@
1
+ #
2
+ # Copyright (C) 2025 Bruce Ashfield <bruce.ashfield@gmail.com>
3
+ #
4
+ # SPDX-License-Identifier: GPL-2.0-only
5
+ #
6
+ """
7
+ Allow running as: python -m bitbake_project
8
+ """
9
+
10
+ from .cli import main
11
+
12
+ if __name__ == "__main__":
13
+ import sys
14
+ sys.exit(main())