Fixed typo in setup.py
All checks were successful
git.cronocide.net/bluebubbles-bot/pipeline/head This commit looks good

This commit is contained in:
Daniel Dayley 2023-04-11 00:03:33 -06:00
parent 85d89fc51a
commit 6a307fbb69

View File

@ -55,7 +55,7 @@ setup(name='bluebubbles_bot',
packages=find_packages(exclude=['tests']), packages=find_packages(exclude=['tests']),
package_data={"": ['skills/*.py']}, package_data={"": ['skills/*.py']},
install_requires=['pyyaml','datetime','requests','fastapi[all]'], install_requires=['pyyaml','datetime','requests','fastapi[all]'],
scripts=['bin/bluebubbles_bot.py'], scripts=['bin/bluebubbles_bot'],
long_description=open('README.md').read(), long_description=open('README.md').read(),
zip_safe=True zip_safe=True
) )