python-gallery/setup.py
Michał 0414cda5d3 Fix image ICC profile getting lost on compression
Fix setup not holding all required modules
Add temporary theme to login and upload page
Other random bug fixes
2023-01-17 22:13:52 +00:00

17 lines
307 B
Python

from setuptools import find_packages, setup
setup(
name='onlylegs',
version='170123',
packages=find_packages(),
include_package_data=True,
install_requires=[
'flask',
'libsass',
'python-dotenv',
'pillow',
'colorthief',
'pyyaml',
],
)