python-gallery/setup.py
Michał 7605e5ab40 Add Notification js system
Load full image on first click of full resolution button
Change background image
Change way images load into the view
Add Lazy Loading
2023-01-14 01:46:11 +00:00

15 lines
260 B
Python

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