python-gallery/setup.py
Michał a10a5a8793 Generate thumbnails on the fly with PIL
Removed the need of having 3 copies of an image
Fixes more Sass(y) stuff
2023-01-13 18:29:07 +00:00

15 lines
260 B
Python

from setuptools import find_packages, setup
setup(
name='onlylegs',
version='130123',
packages=find_packages(),
include_package_data=True,
install_requires=[
'flask',
'libsass',
'dotenv',
'Pillow',
],
)