PythonGallery/setup.py
Fluffy-Bean 828167f762 Added settings page
Added logging to a .log file
Fixed Images loosing colour and rotation on thumbnail generation
Added more info to README
2023-03-01 23:29:34 +00:00

17 lines
335 B
Python

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