Use setuptools

This commit is contained in:
Joscha 2019-04-12 18:10:36 +00:00
parent 62e5adc878
commit 903ba4973b
3 changed files with 30 additions and 2 deletions

8
setup.py Normal file
View file

@ -0,0 +1,8 @@
from setuptools import setup
setup(
name="yaboli",
version="0.1.0",
packages=["yaboli"],
install_requires=["websockets==7.0"],
)