superset-showtime 0.1.0__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 superset-showtime might be problematic. Click here for more details.

showtime/__init__.py ADDED
@@ -0,0 +1,21 @@
1
+ """
2
+ 🎪 Superset Showtime - Smart ephemeral environment management
3
+
4
+ Circus tent emoji state tracking for Apache Superset ephemeral environments.
5
+ """
6
+
7
+ __version__ = "0.1.0"
8
+ __author__ = "Maxime Beauchemin"
9
+ __email__ = "maximebeauchemin@gmail.com"
10
+
11
+ from .core.circus import PullRequest, Show
12
+ from .core.config import ShowtimeConfig
13
+ from .core.github import GitHubInterface
14
+
15
+ __all__ = [
16
+ "__version__",
17
+ "Show",
18
+ "PullRequest",
19
+ "ShowtimeConfig",
20
+ "GitHubInterface",
21
+ ]
showtime/__main__.py ADDED
@@ -0,0 +1,8 @@
1
+ """
2
+ 🎪 Superset Showtime CLI entry point
3
+ """
4
+
5
+ from .cli import main
6
+
7
+ if __name__ == "__main__":
8
+ main()