Metadata-Version: 2.1
Name: pyconstantt
Version: 1.0.1
Summary: New way to make constant in Python
Home-page: https://github.com/yoonhero/pyconstant
Author: Yoonhero06
Author-email: yoonhero06@naver.com
License: MIT
Description: # PyConstant
        
        New way to make constant in Python
        
        ## API Reference
        
        ```python
        from pyconstantt import constant
        ```
        
        #### Set Item
        
        ```python
          constant.Pi = 3.14
        ```
        
        #### Get item
        
        ```python
          print(constant.Pi) # 3.14
        ```
        
        ## Installation
        
        Install my-project with PyPl
        
        ```bash
          pip install pyconstantt
        ```
        
        ## Authors
        
        -   [@yoonhero](https://github.com/yoonhero)
        
        ## Badge
        
        [![MIT License](https://img.shields.io/apm/l/atomic-design-ui.svg?)](https://github.com/tterb/atomic-design-ui/blob/master/LICENSEs)
        ![Downloads](https://img.shields.io/pypi/dm/pyconstantt)
        
        ## Demo
        
        [Example](https://github.com/yoonhero/pyconstant/blob/master/src/pyconstant/example/example.py)
        
Keywords: constant final variable
Platform: UNKNOWN
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
Description-Content-Type: text/markdown
