Metadata-Version: 2.1
Name: PyVersionNumber
Version: 1.1.1
Summary: A small library for handling and comparing Semantic Version Numbers
Home-page: https://github.com/CPSuperstore/PyVersionNumber
Author: CPSuperstore
Author-email: cpsuperstoreinc@gmail.com
License: MIT
Download-URL: https://github.com/CPSuperstore/PyVersionNumber/archive/refs/tags/v1.1.1.tar.gz
Project-URL: Bug Tracker, https://github.com/CPSuperstore/PyVersionNumber/issues
Description: # PyVersionNumber
        A small library for handling Semantic Version Numbers
        
        ## Installation
        ```shell
        pip install PyVersionNumber
        ```
        
        ## Usage
        The following code sample shows the two ways to instantiate the `VersionNumber` class:
        ```python
        import PyVersionNumber
        
        version = PyVersionNumber.VersionNumber("1.2.6")
        ```
        
        OR
        
        ```python
        import PyVersionNumber
        
        version = PyVersionNumber.VersionNumber(1, 2, 6)
        ```
        
        From there, you can compare version numbers, perform mathematical operations on two version numbers, 
        print the number out to the console (or cast to a string), 
        or see if the version number indicates the product is in development 
        according to Semantic Versioning Standards (the Major number = 0)
        
        It is a very small and simple library which has many uses. Enjoy!
        
        ## Contributing
        If you wish to contribute, submit a PR and I would be happy to review it!
Keywords: SEMANTIC,VERSION,NUMBER,VERSIONING,MAJOR,MINOR,PATCH
Platform: UNKNOWN
Classifier: Development Status :: 5 - Production/Stable
Classifier: Intended Audience :: Developers
Classifier: Topic :: Software Development :: Documentation
Classifier: Topic :: Documentation
Classifier: Topic :: Software Development :: Version Control
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.4
Classifier: Programming Language :: Python :: 3.5
Classifier: Programming Language :: Python :: 3.6
Classifier: Natural Language :: English
Description-Content-Type: text/markdown
