partybot/setup.py
Morgan McMillian eb532e34ac
All checks were successful
git.dreamfall.space/partybot/pipeline/head This commit looks good
it's in that place where i put that thing that time
2024-12-02 19:13:03 -08:00

19 lines
384 B
Python

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