Metadata-Version: 2.1
Name: cuefig
Version: 0.0.6
Summary: A config framework that you can cue and hint quickly.
Home-page: https://github.com/FavorMylikes/cuefig
Author: 麦丽素
Author-email: l786112323@gmail.com
License: MIT License
Description: # How to use
        
        1. Create `conf` package
        2. Create `conf/config.py` // Optional
        3. Create `conf/config_deploy.py` // Optional
        4. Add `logging.yaml` in `conf` // We have a default config, the logger file will write into `logs` directory as name `main.log`
        
        ## File Tree
        ```console
        │   main.py
        ├───conf
        │   │   config.py
        │   │   config_deploy.py
        │   │   logging.yaml
        │   │   __init__.py
        └───logs
                main.log
        ```
        
        ```python
        
        import cuefig
        from cuefig import logger
        
        if __name__ == '__main__':
            logger.info("hi")
            print(f"username in conf/config.py: {cuefig.USERNAME}")
            print(f"password override in conf/config_deploy.py: {cuefig.PASSWORD}")
            print(f"Path var: {cuefig.ROOT_DIR}")
        ```
        
        ![img.png](img/img.png)
        
        - Here you can see, the config variable be `cue` as in very fast way. 
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.7
Description-Content-Type: text/markdown
