From c728ff331a762777ce9e5d00e62a859f4e1423dc Mon Sep 17 00:00:00 2001 From: jeremyredhead Date: Mon, 19 Feb 2018 20:50:28 +0000 Subject: [PATCH] Add a SetupTools setup.py file This will making installing & using yaboli easier --- setup.py | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 setup.py 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'] +)