Metadata-Version: 2.1
Name: ppb-vector
Version: 1.0a2
Summary: A basic game development Vector class.
Home-page: https://github.com/ppb/ppb-vector
Author: Piper Thunstrom
Author-email: pathunstrom@gmail.com
License: Artistic-2.0
Description: # ppb-vector
        The immutable, 2D vector class for the PursuedPyBear project.
        
        `Vector` implements many convenience features, as well as
        useful mathematical operations for 2D geometry.
        
        ## Install
        
        You can install `Vector` pip package using
        
        ```bash
        pip install 'ppb-vector'
        ```
        
        ## Usage
        
        `Vector` is an immutable 2D Vector. Instantiated as expected: 
        
            >>> from ppb_vector import Vector
            >>> Vector(3, 4)
            Vector(3.0, 4.0)
        
        
        See the [online documentation] for an overview of the functionality.
        
        [online documentation]: https://ppb-vector.readthedocs.io/en/latest/
        
Platform: UNKNOWN
Classifier: Development Status :: 4 - Beta
Classifier: Intended Audience :: Developers
Classifier: Topic :: Software Development :: Libraries
Classifier: Topic :: Scientific/Engineering :: Mathematics
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: 3.7
Requires-Python: >= 3.6
Description-Content-Type: text/markdown
