pakt 0.2.1__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.
pakt/__init__.py ADDED
@@ -0,0 +1,3 @@
1
+ """Pakt - Fast, efficient Plex-Trakt sync."""
2
+
3
+ __version__ = "0.1.0"
pakt/__main__.py ADDED
@@ -0,0 +1,6 @@
1
+ """Entry point for python -m pakt."""
2
+
3
+ from pakt.cli import main
4
+
5
+ if __name__ == "__main__":
6
+ main()
pakt/assets/icon.png ADDED
Binary file
pakt/assets/icon.svg ADDED
@@ -0,0 +1,10 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 256 256">
2
+ <defs>
3
+ <linearGradient id="bg" x1="0%" y1="0%" x2="100%" y2="100%">
4
+ <stop offset="0%" style="stop-color:#6366f1"/>
5
+ <stop offset="100%" style="stop-color:#8b5cf6"/>
6
+ </linearGradient>
7
+ </defs>
8
+ <circle cx="128" cy="128" r="120" fill="url(#bg)"/>
9
+ <text x="128" y="165" font-family="Inter, -apple-system, sans-serif" font-size="140" font-weight="600" fill="white" text-anchor="middle">P</text>
10
+ </svg>
pakt/assets/logo.png ADDED
Binary file