Skip to content

Commit

Permalink
update websockets to 11.0.3 (#43)
Browse files Browse the repository at this point in the history
  • Loading branch information
luketainton authored Nov 1, 2023
1 parent 8e338d3 commit 8b80aff
Showing 1 changed file with 18 additions and 18 deletions.
36 changes: 18 additions & 18 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,40 +4,40 @@

from setuptools import setup, find_packages

with open('README.md') as readme_file:
with open("README.md") as readme_file:
readme = readme_file.read()

requirements = ['webexteamssdk==1.6.1', 'coloredlogs', 'websockets==10.2', 'backoff']
requirements = ["webexteamssdk==1.6.1", "coloredlogs", "websockets==11.0.3", "backoff"]

setup_requirements = ['pytest-runner', ]
setup_requirements = ["pytest-runner"]

test_requirements = ['pytest>=3', ]
test_requirements = ["pytest>=3"]

setup(
author="Finbarr Brady",
author_email='[email protected]',
python_requires='>=3.8',
author_email="[email protected]",
python_requires=">=3.8",
classifiers=[
'Development Status :: 2 - Pre-Alpha',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Natural Language :: English',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
"Development Status :: 2 - Pre-Alpha",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Natural Language :: English",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
],
description="Python package for a Webex Bot based on websockets.",
install_requires=requirements,
license="MIT license",
long_description=readme,
include_package_data=True,
long_description_content_type="text/markdown",
keywords='webex_bot',
name='webex_bot',
packages=find_packages(include=['webex_bot', 'webex_bot.*']),
keywords="webex_bot",
name="webex_bot",
packages=find_packages(include=["webex_bot", "webex_bot.*"]),
setup_requires=setup_requirements,
test_suite='tests',
test_suite="tests",
tests_require=test_requirements,
url='https://github.com/fbradyirl/webex_bot',
version='0.4.1',
url="https://github.com/fbradyirl/webex_bot",
version="0.4.1",
zip_safe=False,
)

0 comments on commit 8b80aff

Please sign in to comment.