Skip to content

Commit

Permalink
Format setup.py with black.
Browse files Browse the repository at this point in the history
  • Loading branch information
aaugustin committed Nov 20, 2022
1 parent 9e960b5 commit f199a31
Showing 1 changed file with 27 additions and 27 deletions.
54 changes: 27 additions & 27 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@

description = "An implementation of the WebSocket Protocol (RFC 6455 & 7692)"

long_description = (root_dir / 'README.rst').read_text(encoding='utf-8')
long_description = (root_dir / "README.rst").read_text(encoding="utf-8")

# PyPI disables the "raw" directive.
long_description = re.sub(
Expand All @@ -18,47 +18,47 @@
flags=re.DOTALL | re.MULTILINE,
)

exec((root_dir / 'src' / 'websockets' / 'version.py').read_text(encoding='utf-8'))
exec((root_dir / "src" / "websockets" / "version.py").read_text(encoding="utf-8"))

packages = ['websockets', 'websockets/legacy', 'websockets/extensions']
packages = ["websockets", "websockets/legacy", "websockets/extensions"]

ext_modules = [
setuptools.Extension(
'websockets.speedups',
sources=['src/websockets/speedups.c'],
optional=not (root_dir / '.cibuildwheel').exists(),
"websockets.speedups",
sources=["src/websockets/speedups.c"],
optional=not (root_dir / ".cibuildwheel").exists(),
)
]

setuptools.setup(
name='websockets',
name="websockets",
version=version,
description=description,
long_description=long_description,
url='https://github.com/aaugustin/websockets',
author='Aymeric Augustin',
author_email='aymeric.augustin@m4x.org',
license='BSD',
url="https://github.com/aaugustin/websockets",
author="Aymeric Augustin",
author_email="aymeric.augustin@m4x.org",
license="BSD",
classifiers=[
'Development Status :: 5 - Production/Stable',
'Environment :: Web Environment',
'Intended Audience :: Developers',
'License :: OSI Approved :: BSD License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
'Programming Language :: Python :: 3.11',
"Development Status :: 5 - Production/Stable",
"Environment :: Web Environment",
"Intended Audience :: Developers",
"License :: OSI Approved :: BSD License",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
],
package_dir = {'': 'src'},
package_data = {'websockets': ['py.typed']},
package_dir={"": "src"},
package_data={"websockets": ["py.typed"]},
packages=packages,
ext_modules=ext_modules,
include_package_data=True,
zip_safe=False,
python_requires='>=3.7',
test_loader='unittest:TestLoader',
python_requires=">=3.7",
test_loader="unittest:TestLoader",
)

0 comments on commit f199a31

Please sign in to comment.