- Replace manual column-width formatting with rich.Table - Add pyproject.toml, uv.lock for dependency management - Add .python-version (3.11) and .envrc for direnv/uv auto-setup - Add main.py scaffold Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
7 lines
91 B
Python
7 lines
91 B
Python
def main():
|
|
print("Hello from cpc-price-cli!")
|
|
|
|
|
|
if __name__ == "__main__":
|
|
main()
|