Merge pull request #2 from jeremyredhead/jeremyredhead-easy-setup

Add a SetupTools setup.py file
This commit is contained in:
Garmelon 2018-02-19 22:46:23 +00:00 committed by GitHub
commit 04f4c3a8b6
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

10
setup.py Normal file
View file

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