Metadata-Version: 2.1
Name: fabric-calc
Version: 1.2.11
Summary: Promail: The Python Email Automation Framework
License: GNU
Author: Antoine Wood
Author-email: antoinewood@gmail.com
Classifier: License :: Other/Proprietary License
Classifier: Programming Language :: Python :: 2
Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.10
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: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Requires-Dist: rectpack (>=0.2.2,<0.3.0)
Description-Content-Type: text/markdown

# Fabric Calc

List of rectangle, a rectangle is a tuple of two ints, (length, width)
```python

from fabric_calc.fabric_calc import calculate 

# length, width, quantity
rectangles = [
            (30, 40, 5),
            (55, 36, 4),
            (33, 16,1),
            (20, 36,6),
        ]
print(calculate(rectangles))

```
