lab
/
slides-proxy
Archived
1
Fork 0
This repository has been archived on 2024-03-03. You can view files and clone it, but cannot push or open issues or pull requests.
slides-proxy/setup.py

20 lines
401 B
Python

from setuptools import setup
setup(
name="slides",
version="0.0.0",
url="https://github.com/realorangeone/slides",
license="MIT",
author="Jake Howard",
description="Slides",
packages=["slides"],
include_package_data=True,
zip_safe=False,
pathon_requires=">=3.7",
install_requires=[
"aiohttp",
"python-socketio",
"gunicorn"
],
)