python-gallery/setup.py
Michał 512f6f623e Move user data to ~/.config/onlylegs location
Update location of default themes folder
2023-03-02 13:19:10 +00:00

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',
],
)