Metadata-Version: 2.1
Name: twod
Version: 0.2.1
Summary: A two-dimensional geometry library for humans.
Home-page: https://github.com/JnyJny/twod.git
Author: jnyjny
Author-email: erik.oshaughnessy@gmail.com
Requires-Python: >=3.7,<4.0
Classifier: Development Status :: 3 - Alpha
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: Apache Software License
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Classifier: Topic :: Games/Entertainment
Classifier: Topic :: Multimedia :: Graphics
Classifier: Topic :: Scientific/Engineering :: Mathematics
Project-URL: Repository, https://github.com/JnyJny/twod.git
Description-Content-Type: text/x-rst


twod - A Two-Dimensional Geometry Library for Humans™
=====================================================

|pypi|  |license| |python| |coverage| |build|

**twod** is a Python 3 package that supplies simple two dimensional geometric primitives. Primitives currently include:

- twod.Point, a point class
- twod.Rect, a rectangle class

Install
-------

1. Install using pip:

.. code:: bash

	  $ pip3 install twod

2. Install from Github using poetry_:

.. code:: bash

	  $ git clone https://github.com/JnyJny/twod.git
	  $ cd twod; poetry install



Uninstall
---------

Uninstall using pip:

.. code:: bash

	  $ pip3 uninstall twod

Usage
-----

``Missing``

.. _poetry: https://pypi.org/project/poetry/

.. |pypi| image:: https://img.shields.io/pypi/v/twod.svg?style=flat-square&label=version
   :target: https://pypi.org/pypi/twod
   :alt: Latest version released on PyPi

.. |python| image:: https://img.shields.io/pypi/pyversions/twod.svg?style=flat-squre
   :target: https://pypi.org/project/twod
   :alt: Python Versions

.. |license| image:: https://img.shields.io/badge/license-apache-blue.svg?style=flat-square
   :target: https://github.com/jnyjny/twod/blob/master/LICENSE
   :alt: Apache License v2.0

.. |coverage| image:: https://coveralls.io/repos/github/JnyJny/twod/badge.svg?branch=master
   :target: https://coveralls.io/github/JnyJny/twod?branch=master
   :alt: Code Coverage

.. |build| image:: https://travis-ci.com/JnyJny/twod.svg?branch=master

