python-gallery/setup.py
Michał 792cbd1884 Move main JS into its own file
Fix Sass animations
When home button clicked from image view, it'll scroll down automagically
2023-01-26 14:43:08 +00:00

18 lines
333 B
Python

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