python-gallery/setup.py
Michał 34d6dca2a9 Add Download button
Forgotten to update version 💀
2023-01-25 16:46:13 +00:00

18 lines
333 B
Python

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