Metadata-Version: 2.1
Name: complex
Version: 0.1.8
Summary: Compute complex numbers operations such as addition, substraction, multiplication , division and modulus.
Home-page: https://github.com/deepak7376/complex
Author: Deepak Yadav
Author-email: dky.united@gmail.com
License: MIT
Keywords: Complex Operations
Platform: UNKNOWN
Classifier: Development Status :: 3 - Alpha
Classifier: Intended Audience :: Developers
Classifier: Topic :: Scientific/Engineering :: Mathematics
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3.0
Requires-Python: >=3
Description-Content-Type: text/x-rst

Complex
==========
Compute complex numbers operations such as addition, substraction, multiplication , division and modulus.

:Author: Deepak Yadav
:Version: 0.1.8
:Copyright: This document has been placed in the public domain.

Look how easy it is to use:
  code::

    from complex import Complex
    x = Complex(2,3)
    y = Complex(4,5)
    print(x+y, x-y, x*y, x/y, x.mod(), y.mod())

Features
--------
- Easy to use
- Make things faster

Installation
------------
Install complex by running:

  pip install complex

Contribute
----------
- Source Code: https://github.com/deepak7376/complex

Support
-------
If you are having issues, please let us know.
We have a mailing list located at: dky.united@gmail.com

License
-------
The project is licensed under the MIT license.


