File size: 945 Bytes
			
			| 93acd41 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 | #!/usr/bin/env python
from setuptools import setup
setup(
    name="legofy",
    version="1.0.0",
    author="Juan Potato",
    author_email="juanpotatodev@gmail.com",
    url="https://github.com/JuanPotato/Legofy",
    description="Make images look as if they are made out of 1x1 LEGO blocks",
    long_description=("Legofy is a python program that takes a static image or"
                      " gif and makes it so that it looks as if it was built "
                      "out of LEGO."),
    classifiers=[
        'Development Status :: 4 - Beta',
        'Programming Language :: Python',
    ],
    license="MIT",
    packages=['legofy'],
    install_requires=['pillow', 'click'],
    include_package_data=True,
    entry_points={
        'console_scripts': [
            'legofy = legofy.cli:main',
        ],
    },
    package_data={
        'bricks': ['*.png'],
    },
    test_suite="nose.collector",
    tests_require=['nose'],
)
 |