Metadata-Version: 2.1
Name: kivymd-extensions.title-bar
Version: 0.1
Summary: File manager for desktop
Home-page: https://github.com/kivymd-extensions/title_bar
Author: Neizvestnyj, KivyMD Team and other contributors
Author-email: pikromat1995@gmail.com
License: MIT
Project-URL: Tracker, https://github.com/kivymd-extensions/title_bar/issues
Keywords: kivymd_extensions,kivymd,kivy,material,ui
Platform: any
Classifier: Development Status :: 4 - Beta
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3 :: Only
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Classifier: Operating System :: OS Independent
Classifier: Operating System :: Android
Classifier: Operating System :: POSIX :: Linux
Classifier: Operating System :: POSIX :: BSD :: FreeBSD
Classifier: Operating System :: Microsoft :: Windows
Classifier: Operating System :: iOS
Classifier: Operating System :: MacOS
Classifier: Operating System :: MacOS :: MacOS X
Classifier: Environment :: MacOS X
Classifier: Environment :: Win32 (MS Windows)
Classifier: Environment :: X11 Applications
Classifier: Intended Audience :: Developers
Classifier: Intended Audience :: End Users/Desktop
Classifier: Intended Audience :: Information Technology
Classifier: Intended Audience :: Science/Research
Classifier: Topic :: Software Development :: User Interfaces
Classifier: Topic :: Scientific/Engineering :: Human Machine Interfaces
Classifier: Topic :: Scientific/Engineering :: Visualization
Requires-Python: >=3.6
Description-Content-Type: text/markdown; charset=UTF-8
License-File: LICENSE
Requires-Dist: kivymd (>=0.104.2)
Requires-Dist: kivy (>=2.1.0)
Provides-Extra: dev
Requires-Dist: pre-commit ; extra == 'dev'
Requires-Dist: black ; extra == 'dev'
Requires-Dist: isort[pyproject] ; extra == 'dev'
Requires-Dist: flake8 ; extra == 'dev'
Requires-Dist: pytest ; extra == 'dev'
Requires-Dist: pytest-cov ; extra == 'dev'
Requires-Dist: pytest-asyncio ; extra == 'dev'
Requires-Dist: pytest-timeout ; extra == 'dev'
Requires-Dist: coveralls ; extra == 'dev'
Provides-Extra: docs
Requires-Dist: sphinx ; extra == 'docs'
Requires-Dist: sphinx-autoapi (==1.4.0) ; extra == 'docs'
Requires-Dist: sphinx-rtd-theme ; extra == 'docs'

# Title bar

## Installation

```bash
pip install kivymd_extensions.title_bar
# or
pip install https://github.com/kivymd-extensions/title_bar/archive/master.zip
```

### Dependencies:

- [KivyMD](https://github.com/kivymd/KivyMD) >= master version
- [Kivy](https://github.com/kivy/kivy) >= 2.0.0 ([Installation](https://kivy.org/doc/stable/gettingstarted/installation.html))
- [Python 3.6+](https://www.python.org/)

### Usage

```python
from kivymd.app import MDApp
from kivymd_extensions.title_bar import MDTitleBar


class MainApp(MDApp):
    def build(self):
        return MDTitleBar()


if __name__ == "__main__":
    MainApp().run()
```

### Support

If you need assistance, or you have a question, you can ask for help on our mailing list:

- **Discord server:** https://discord.gg/wu3qBST
- **Email:** kivydevelopment@gmail.com

## License

[MIT License](LICENSE)
