partybot/setup.py
Morgan McMillian 3c539d1fc9
Some checks failed
dreamfall/partybot/pipeline/head There was a failure building this commit
Tweak quotes and test the build
2022-11-13 07:20:59 -08:00

20 lines
384 B
Python

from setuptools import setup
setup(
name='partybot',
version='0.2.1',
py_modules=['partybot.models','partybot.pnutbot'],
install_requires=[
'PyYAML',
'pnutpy',
'requests',
'SQLAlchemy',
'websocket-client',
],
entry_points={
'console_scripts': [
'partybot = partybot.pnutbot:main'
]
},
)