Metadata-Version: 2.1
Name: shaksz
Version: 0.1.2
Summary: All coding and design solutions as package
Home-page: https://github.com/vermavarun/shaksz
Author: Varun Verma
Author-email: vermavarun@outlook.com
License: UNKNOWN
Description: # shaksz
        All coding and design solutions as package
        
        
        # Unit Tests
        `python -m unittest discover -s tests`
        
        # Build package
        
        
            python setup.py sdist bdist_wheel
        
        
        
        # Publish Test
        
            twine upload --repository testpypi dist/*
        
        # Publish Prod
            TBD
        
            pip install twine
        
            twine upload dist/*
        
        
        # Consumption
            import shaksz
        
            result = shaksz.leetcode.twoSum([2, 7, 11, 15], 9)
        
            print(result)
        
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.6
Description-Content-Type: text/markdown
