bharatcode 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.
bharatcode/__init__.py ADDED
@@ -0,0 +1,13 @@
1
+ """Sylithe Code — AI Coding Agent for Indian Developers"""
2
+ __version__ = "0.1.0"
3
+
4
+ # Force UTF-8 output streams so emoji/Unicode never crash on cp1252 consoles
5
+ # (legacy Windows terminals, piped output, CI). Must run before any rich
6
+ # Console is created.
7
+ import sys as _sys
8
+
9
+ for _stream in (_sys.stdout, _sys.stderr):
10
+ try:
11
+ _stream.reconfigure(encoding="utf-8", errors="replace")
12
+ except Exception:
13
+ pass