diff --git a/setup.py b/setup.py new file mode 100644 index 0000000..c46f97b --- /dev/null +++ b/setup.py @@ -0,0 +1,10 @@ +from setuptools import setup + +setup(name='yaboli', + version='1.0', + description='Yet Another BOt LIbrary for euphoria.io', + author='Garmelon', + url='https://github.com/Garmelon/yaboli', + packages=['yaboli'], + install_requires=['websockets'] +)