Metadata-Version: 2.1
Name: wwu
Version: 0.0.2
Summary: Find the optimal way up to store your boxes.
Home-page: https://github.com/Um9i/wwu
Author: Rob Horton
Author-email: vulgarmessiah@gmail.com
License: UNKNOWN
Download-URL: https://github.com/Um9i/wwu/archive/master.zip
Description: # WWU
        
        Do you have limited storage space and a bunch of boxes to store? wwu tells you which way up will be best.
        
        Boxes have 6 permutations in terms of storing them and currently wwu provides an indexed value of a permutation so you will only receive values in the range of 0 - 5.
        
        ## Example
        
        ```py
        from wwu import Box
        
        b = Box(10, 10, 20)  # Create a box with 10 x 10 x 20 dimensions.
        b.wwu(10, 10, 20)  # Find the optimal permutation in storage space of 10 x 10 x 20
        
        >>> 0
        ```
        
        ## Installation
        
        ```
        pip install wwu
        ```
        
        ## Tests
        
        ```
        pytest
        ```
        
        ```
        ========================================= test session starts ==========================================
        platform linux -- Python 3.7.4, pytest-5.1.2, py-1.8.0, pluggy-0.12.0
        rootdir: /var/home/Um9i/Documents/wwu
        collected 2 items                                                                                      
        
        tests/test_wwu.py ..                                                                             [100%]
        
        ========================================== 2 passed in 0.01s ===========================================
        ```
        
Keywords: boxes containers inventory permutation combinatorics
Platform: UNKNOWN
Classifier: Development Status :: 3 - Alpha
Classifier: Environment :: Console
Classifier: Intended Audience :: End Users/Desktop
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Classifier: Topic :: Utilities
Classifier: Programming Language :: Python
Description-Content-Type: text/markdown
