2021-11-19 23:14:24 +00:00
|
|
|
from setuptools import setup
|
|
|
|
|
|
|
|
setup(
|
|
|
|
name='partybot',
|
2021-11-20 16:36:58 +00:00
|
|
|
version='0.2.0',
|
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'
|
|
|
|
]
|
|
|
|
},
|
|
|
|
)
|