mirror of
https://github.com/Derpy-Leggies/OnlyLegs.git
synced 2025-01-06 14:56:14 +00:00
15 lines
260 B
Python
15 lines
260 B
Python
from setuptools import find_packages, setup
|
|
|
|
setup(
|
|
name='onlylegs',
|
|
version='100123',
|
|
packages=find_packages(),
|
|
include_package_data=True,
|
|
install_requires=[
|
|
'flask',
|
|
'libsass',
|
|
'dotenv',
|
|
'Pillow',
|
|
],
|
|
)
|