Metadata-Version: 2.1
Name: ypstruct
Version: 0.0.1
Summary: A simple and easy-to-use C-like structure for Python
Home-page: https://github.com/smkalami/ypstruct
Author: Mostapha Kalami Heris
Author-email: sm.kalami@gmail.com
License: UNKNOWN
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent

Yarpiz Structure (ypstruct)
=======================
### A simple and easy-to-use C-like structure for Python

----

## Installation
Use pip:
'''
pip install ypstruct
'''
if you want to install from source code , you can download from pypi or simple use:
'''
git clone https://github.com/smkalami/ypstruct 
'''
then run:
'''
python setup.py install
'''

## Example
'''python

from ypstruct import structure

if __name__ == "__main__":

      p = structure()
      p.x = 3
      p.y = 4
      p.A = p.x * p.y

      print(p)

'''


