Metadata-Version: 2.1
Name: lightconf
Version: 22.2.0
Summary: Simple Configurations with Zero Redundancy
Home-page: https://github.com/rpeloff/lightconf
Author: Ryan Eloff
Author-email: ryaneloff@gmail.com
Maintainer: Ryan Eloff
Maintainer-email: ryaneloff@gmail.com
License: Apache-2.0
Project-URL: Source Code, https://github.com/rpeloff/lightconf
Keywords: configuration,config,cfg,dataclass,yaml
Platform: UNKNOWN
Classifier: Development Status :: 2 - Pre-Alpha
Classifier: Intended Audience :: Developers
Classifier: Natural Language :: English
Classifier: License :: OSI Approved :: Apache Software License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python
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: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: Implementation :: CPython
Classifier: Programming Language :: Python :: Implementation :: PyPy
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Requires-Python: >=3.6
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: attrs (==21.4.0)

# lightconf: Simple Configurations with Zero Redundancy

`lightconf` is a lightweight package that allows you to configure your classes with minimum
boilerplate. Configurations are easy to understand, quick to write, and intuitive to work with.

## Requirements

Python 3.6+

## Installation

The recommended installation method is pip-installing into a virtual environment:

```bash
$ python -m pip install lightconf
```

## `lightconf` by Example

```python
import lightconf
```

_TBC_ we will soon provide concrete examples!

## License

This project is licensed under the terms of the
[Apache License 2.0](https://choosealicense.com/licenses/apache-2.0/) license.


