Metadata-Version: 2.1
Name: Trilent
Version: 2.1.0
Summary: Python GUI Framework.
Author: Schkimansky
Author-email: <ahmadchawla1432@gmail.com>
Keywords: python,gui,ui,framework,app,application,ui building,app development
Classifier: Development Status :: 1 - Planning
Classifier: Intended Audience :: Developers
Classifier: Programming Language :: Python :: 3
Classifier: Operating System :: Unix
Classifier: Operating System :: MacOS :: MacOS X
Classifier: Operating System :: Microsoft :: Windows
Description-Content-Type: text/markdown


## Trilent
A new UI framework for python! Full Documenation coming soon.

## Features
# Animations
```python
import trilent as t

window = t.Window()

# Setup

button = t.Button(window, text='I am a Button!')
button.place(100, 100)

# Animate
button.animate(button_color='lime', time=1) # Animate its color slowly to lime, In 1 second.

window.run()
```

