yaboli/setup.py
jeremyredhead c728ff331a
Add a SetupTools setup.py file
This will making installing & using yaboli easier
2018-02-19 20:50:28 +00:00

10 lines
286 B
Python

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']
)