Metadata-Version: 2.1
Name: package_parser
Version: 1.0.0
Summary: Python utility to parse package filenames to get the name and version of the package.
Home-page: https://github.com/justengel/package_parser
Author: Justin Engel
Author-email: jtengel08@gmail.com
License: MIT
Download-URL: https://github.com/justengel/package_parser/archive/v1.0.0.tar.gz
Description: ==============
        package_parser
        ==============
        Python utility for parsing packages names and versions from wheel filename, sdist filenames, or setup.py files
        
        
        Example
        =======
        
        Manually import py files or .pyd files
        
        .. code-block:: python
        
            import package_parser
        
            attrs = package_parser.package_parserparse('class-property-1.0.0-py3-none-any.whl')
            assert attrs['name'] == 'class-property'
            assert attrs['version'] == '1.0.0'
        
Keywords: python package name version
Platform: any
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 3
Classifier: Operating System :: OS Independent
