initial commit

This commit is contained in:
2026-04-08 16:53:29 +05:30
commit fe17e1147d
8 changed files with 1144 additions and 0 deletions

10
.gitignore vendored Normal file
View File

@@ -0,0 +1,10 @@
# Python-generated files
__pycache__/
*.py[oc]
build/
dist/
wheels/
*.egg-info
# Virtual environments
.venv

1
.python-version Normal file
View File

@@ -0,0 +1 @@
3.12

0
README.md Normal file
View File

10
pyproject.toml Normal file
View File

@@ -0,0 +1,10 @@
[project]
name = "clint"
version = "0.1.0"
description = "Add your description here"
readme = "README.md"
requires-python = ">=3.12"
dependencies = [
"textual[syntax]>=8.2.3",
"textual-dev>=1.8.0",
]

0
src/clint/__init__.py Normal file
View File

0
src/clint/main.py Normal file
View File

18
src/clint/ui/app.py Normal file
View File

@@ -0,0 +1,18 @@
from textual.app import App, ComposeResult
from textual.widgets import Footer, Header
class cliNTUI(App):
def compose(self) -> ComposeResult:
yield Header()
yield Footer()
def action_toggle_dark(self) -> None:
self.theme = (
"textual-dark" if self.theme == "textual-light" else "textual-light"
)
if __name__ == "__main__":
app = cliNTUI()
app.run()

1105
uv.lock generated Normal file

File diff suppressed because it is too large Load Diff