Metadata-Version: 2.1
Name: traVer
Version: 1.1.0
Summary: Semantic versioning for python projects
Home-page: https://github.com/sunilk-n/TraVersion
Author: Sunil Kumar Nerella
Author-email: sunil.nerella39@gmail.com
License: GNU GENERAL PUBLIC LICENSE
Description: # TraVersion
        TraVersion is similar way of maintaining semantic versioning in python, where the major points are introduced in this repository.
        
        **Usage Example:**
        * Default version
            ```python
            from traVer import Version
            version = Version()
            
            # Default version will be 1.0.0
            print(version)
            ```
          _Output:_
            ```bash
            >> 1.0.0
            ```
        * Assigning version
            ```python
            from traVer import Version
            version = Version("2.3.4-beta.5")
            
            # You can specify major, minor, patch, preRelName, preRelease
            print(version.major)
            print(version.patch)
            ```
            _Output:_
            ```bash
            >> 2
            4
          ```
        **Note:**
        
           Anyone interested to contribute code or give some ideas to improve the versions to this repository are most welcome. 
            
        **Do you know?**
            
           > _The word TraVersion is taken from Traverse which means  "to go or travel across or over"_
        
Platform: UNKNOWN
Classifier: Environment :: Web Environment
Classifier: Intended Audience :: Developers
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 2
Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.4
Classifier: Programming Language :: Python :: 3.5
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: 3.7
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Requires-Python: >=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*
Description-Content-Type: text/markdown
