Metadata-Version: 1.1
Name: jar-manifest
Version: 0.1
Summary: Returns the content of a jar file's MANIFEST as dict.
Home-page: http://github.com/nlohmann/jar_manifest
Author: Niels Lohmann
Author-email: mail@nlohmann.me
License: MIT
Description: jar_manifest
        ------------
        
        To get a jar file's manifest as dict, just::
        
            >>> import jar_manifest
            >>> jar_manifest.manifest('junit-4.12.jar')
            [{'Created-By': 'Apache Maven 3.0.4', 'Archiver-Version': 'Plexus Archiver', 'Manifest-Version': '1.0', 'Implementation-Title': 'JUnit', 'Implementation-Version': '4.12', 'Build-Jdk': '1.6.0_45', 'Implementation-Vendor': 'JUnit', 'Implementation-Vendor-Id': 'junit', 'Built-By': 'jenkins'}]
        
Keywords: jar file java manifest
Platform: UNKNOWN
Classifier: Development Status :: 4 - Beta
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 2.7
Classifier: Topic :: Software Development :: Libraries :: Java Libraries
