mirror of
https://github.com/Derpy-Leggies/OnlyLegs.git
synced 2025-06-29 03:26:16 +00:00
Fix setup not holding all required modules Add temporary theme to login and upload page Other random bug fixes
16 lines
307 B
Python
16 lines
307 B
Python
from setuptools import find_packages, setup
|
|
|
|
setup(
|
|
name='onlylegs',
|
|
version='170123',
|
|
packages=find_packages(),
|
|
include_package_data=True,
|
|
install_requires=[
|
|
'flask',
|
|
'libsass',
|
|
'python-dotenv',
|
|
'pillow',
|
|
'colorthief',
|
|
'pyyaml',
|
|
],
|
|
)
|