Metadata-Version: 2.1
Name: lapin-conf
Version: 22.2.0
Summary: Simple Configurations with Zero Redundancy
Home-page: https://github.com/rpeloff/lapin
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/lapin
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

# Lapin: Simple Configurations with Zero Redundancy

`lapin` 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 lapin-conf
```

## `lapin` by Example

```python
import lapin
```

_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.

## Citing Lapin

If you use Lapin in your research please use the following BibTeX entry:

```BibTeX
@Misc{Eloff2022Lapin,
  author =       {Ryan Eloff},
  title =        {Lapin - Simple Configurations with Zero Redundancy},
  howpublished = {Github},
  year =         {2022},
  url =          {https://github.com/rpeloff/lapin}
}
```


