mirror of
https://github.com/Derpy-Leggies/OnlyLegs.git
synced 2025-01-06 06:46:11 +00:00
Michał
0414cda5d3
Fix setup not holding all required modules Add temporary theme to login and upload page Other random bug fixes
17 lines
307 B
Python
17 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',
|
|
],
|
|
)
|