Metadata-Version: 2.1
Name: rectify
Version: 1.0.1
Summary: Bars generator
Home-page: https://gitlab.com/jenx/rectify/
Author: Ivana Kellyerova
Author-email: ivana.kellyerova@rectify.amarion.net
License: MIT
Description: ![rectify image](https://gitlab.com/jenx/rectify/raw/master/images/header.png "rectify")
        
        # rectify
        
        ``rectify`` is a tiny package whose sole purpose of life is generating
        randomized images with colorful bars on a single-color background. Making a
        picture like the one on the top of this page is as simple as:
        
            from rectify.image import generate, save
        
            picture = generate(900, 30, background=(30, 30, 30), bars='neon')
        
            picture.show()
            save(picture, 'bars.png')
        
        Or from the command line:
        
            $ rectify -x 900 -y 30 -b '(30,30,30)' -r neon -o 'bars.png' --show
        
        Full documentation is available at
        [jenx.gitlab.io/rectify](https://jenx.gitlab.io/rectify/).
        
Keywords: image,bars,stripe,avatar,generator,rectangle,colors
Platform: UNKNOWN
Classifier: Development Status :: 4 - Beta
Classifier: Intended Audience :: End Users/Desktop
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.4
Classifier: Programming Language :: Python :: 3.5
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: 3 :: Only
Classifier: Topic :: Artistic Software
Classifier: Topic :: Multimedia :: Graphics
Description-Content-Type: text/markdown
