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