mirror of
https://github.com/Derpy-Leggies/OnlyLegs.git
synced 2024-12-29 10:56:10 +00:00
19 lines
359 B
Python
19 lines
359 B
Python
from setuptools import find_packages, setup
|
|
|
|
setup(
|
|
name='onlylegs',
|
|
version='23.03.02',
|
|
packages=find_packages(),
|
|
include_package_data=True,
|
|
install_requires=[
|
|
'flask',
|
|
'flask-compress',
|
|
'libsass',
|
|
'python-dotenv',
|
|
'pillow',
|
|
'colorthief',
|
|
'pyyaml',
|
|
'platformdirs',
|
|
],
|
|
)
|