Metadata-Version: 2.1
Name: pybrightness
Version: 0.5
Summary: Python module to modify screen brightness on Linux, Windows and macOS
Author-email: Vignesh Sivanandha Rao <svignesh1793@gmail.com>
License: MIT License
        
        Copyright (c) 2023 Vignesh Rao
        
        Permission is hereby granted, free of charge, to any person obtaining a copy
        of this software and associated documentation files (the "Software"), to deal
        in the Software without restriction, including without limitation the rights
        to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
        copies of the Software, and to permit persons to whom the Software is
        furnished to do so, subject to the following conditions:
        
        The above copyright notice and this permission notice shall be included in all
        copies or substantial portions of the Software.
        
        THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
        IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
        FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
        AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
        LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
        OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
        SOFTWARE.
Project-URL: Homepage, https://github.com/thevickypedia/pybrightness
Project-URL: Source, https://github.com/thevickypedia/pybrightness
Project-URL: Bug Tracker, https://github.com/thevickypedia/pybrightness/issues
Project-URL: Release Notes, https://github.com/thevickypedia/pybrightness/blob/main/release_notes.rst
Keywords: pybrightness,display-settings,brightness-control
Classifier: Development Status :: 5 - Production/Stable
Classifier: Programming Language :: Python :: 3.9
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: MacOS :: MacOS X
Classifier: Operating System :: Microsoft :: Windows
Classifier: Operating System :: POSIX :: Linux
Classifier: Topic :: Terminals :: Terminal Emulators/X Terminals
Requires-Python: >=3
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: python-dotenv >=0.21.0 ; platform_system == "Linux"
Provides-Extra: dev
Requires-Dist: pre-commit ; extra == 'dev'

![Generic badge](https://img.shields.io/badge/Platform-Linux|MacOS|Windows-1f425f.svg)
[![pypi-publish](https://github.com/thevickypedia/pybrightness/actions/workflows/python-publish.yml/badge.svg)](https://github.com/thevickypedia/pybrightness/actions/workflows/python-publish.yml)

# PyBrightness
Python module to modify display brightness on Linux, Windows and macOS

### Installation
```shell
python -m pip install pybrightness
```

### Usage
```python
import pybrightness

pybrightness.increase()  # Increase to 100%
pybrightness.decrease()  # Decrease to 0%
pybrightness.custom(percent=72)  # Set to a custom level
```

## [Release Notes](https://github.com/thevickypedia/pybrightness/blob/main/release_notes.rst)
**Requirement**
```shell
python -m pip install gitverse
```

**Usage**
```shell
gitverse-release reverse -f release_notes.rst -t 'Release Notes'
```

## Pypi Package
[![pypi-module](https://img.shields.io/badge/Software%20Repository-pypi-1f425f.svg)](https://packaging.python.org/tutorials/packaging-projects/)

[https://pypi.org/project/pybrightness/](https://pypi.org/project/pybrightness/)

## License & copyright

&copy; Vignesh Rao

Licensed under the [MIT License](https://github.com/thevickypedia/pybrightness/blob/main/LICENSE)
