Metadata-Version: 2.1
Name: vconfig
Version: 0.1.2
Summary: Easy to use configuration module
Home-page: https://github.com/letscan/vconfig
Author: Letscan
Author-email: letscan@gmail.com
License: MIT
Keywords: configuration
Platform: UNKNOWN
Classifier: Development Status :: 3 - Alpha
Classifier: Intended Audience :: Developers
Classifier: Topic :: Software Development :: Libraries
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: Python :: 3.6
Description-Content-Type: text/markdown
Provides-Extra: dev
Requires-Dist: check-manifest ; extra == 'dev'
Provides-Extra: test
Requires-Dist: coverage ; extra == 'test'

# VConfig - Easy to use configuration module

## Usage

```python
from vconfig import VConfig

V = VConfig(__file__)
print(V.BASE_URL)
```


