10 lines
286 B
Python
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']
|
|
)
|