partybot/setup.py

20 lines
384 B
Python
Raw Normal View History

2021-11-19 23:14:24 +00:00
from setuptools import setup
setup(
name='partybot',
2022-11-13 15:20:59 +00:00
version='0.2.1',
2021-11-20 01:29:33 +00:00
py_modules=['partybot.models','partybot.pnutbot'],
2021-11-19 23:14:24 +00:00
install_requires=[
'PyYAML',
'pnutpy',
'requests',
'SQLAlchemy',
'websocket-client',
],
entry_points={
'console_scripts': [
'partybot = partybot.pnutbot:main'
]
},
)