Small maker of thumbnails and spitter-out of HTML for galleries.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

17 lines
493 B

6 years ago
  1. from setuptools import setup
  2. setup(name='galleryhtml',
  3. version='0.8.1',
  4. description='Generate thumbnails for images and print a simple HTML gallery',
  5. url='http://github.com/brennen/galleryhtml',
  6. author='Brennen Bearnes',
  7. author_email='bbearnes@gmail.com',
  8. license='GPL',
  9. packages=['galleryhtml'],
  10. install_requires=[
  11. 'dominate',
  12. 'Pillow',
  13. 'docopt'
  14. ],
  15. scripts=['bin/gallery-html'],
  16. zip_safe=False)