mirror of
https://github.com/Derpy-Leggies/OnlyLegs.git
synced 2025-06-29 03:26:16 +00:00
Load full image on first click of full resolution button Change background image Change way images load into the view Add Lazy Loading
14 lines
260 B
Python
14 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',
|
|
],
|
|
)
|