Metadata-Version: 2.1
Name: MoranKV
Version: 1.0.8
Summary: ...
Author: Zeta AI
Author-email: zeta.ai.company@gmail.com
License: MIT
Requires-Python: >=3.7
Description-Content-Type: text/markdown
License-File: LICENSE.txt

# MoranKV

```python
from MoranKV import MoranKV


kivy_string = '''
Screen:
    BoxLayout:
        Text:
            text: "Hello World"'''

class App(MoranKV):
    ...


if __name__ == '__main__':
    App(string=kivy_string, app_name='Hello World').run()
```
