Metadata-Version: 2.1
Name: NoVals
Version: 1.0.1
Summary: Throws an error if any literals are in the source code, to help with verifying NoVals Code Golf solutions
Home-page: https://github.com/ThePythonist/NoVals
Author: Morgan Saville
Author-email: gbt505@hotmail.com
License: UNKNOWN
Description: # NoVals
        
        A python module which prevents the programmer from typing any raw values (string, number or None) into the source code of any file which imports the module. This is used to verify the validity of NoVals Code Golf solutions.
        
        ## Installation
        
        NoVals can be installed with pip as follows:
        
        ```
        pip install novals
        ```
        
        Or can be installed directly via the command line:
        
        ```
        python setup.py build
        ```
        
        ## Usage
        
        To use NoVals, simply import it into your scripts as follows:
        
        ```
        import novals
        ```
        
        No initialization is required.
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Description-Content-Type: text/markdown
