mirror of
https://github.com/Derpy-Leggies/OnlyLegs.git
synced 2025-01-01 12:26:13 +00:00
Michał
792cbd1884
Fix Sass animations When home button clicked from image view, it'll scroll down automagically
18 lines
333 B
Python
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',
|
|
],
|
|
)
|