Skip to content

Commit 4eb9c9e

Browse files
committed
pre-commit: run black on setup.py for consistent use of quotes
1 parent 0d6b250 commit 4eb9c9e

File tree

1 file changed

+8
-8
lines changed

1 file changed

+8
-8
lines changed

setup.py

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -4,24 +4,24 @@
44
readme = f.read()
55

66
setup(
7-
name='jupyterhub-tmpauthenticator',
8-
version='1.0.0',
9-
description='JupyterHub authenticator that hands out temporary accounts for everyone',
10-
url='https://github.com/jupyterhub/tmpauthenticator',
7+
name="jupyterhub-tmpauthenticator",
8+
version="1.0.0",
9+
description="JupyterHub authenticator that hands out temporary accounts for everyone",
10+
url="https://github.com/jupyterhub/tmpauthenticator",
1111
author="Project Jupyter Contributors", # founded by Yuvi Panda
1212
author_email="[email protected]",
13-
license='3 Clause BSD',
13+
license="3 Clause BSD",
1414
long_description=readme,
15-
long_description_content_type='text/markdown',
15+
long_description_content_type="text/markdown",
1616
entry_points={
1717
# Thanks to this, user are able to do:
1818
#
1919
# c.JupyterHub.authenticator_class = "tmp"
2020
#
2121
# ref: https://jupyterhub.readthedocs.io/en/4.0.0/reference/authenticators.html#registering-custom-authenticators-via-entry-points
2222
#
23-
'jupyterhub.authenticators': [
24-
'tmp = tmpauthenticator:TmpAuthenticator',
23+
"jupyterhub.authenticators": [
24+
"tmp = tmpauthenticator:TmpAuthenticator",
2525
],
2626
},
2727
packages=find_packages(),

0 commit comments

Comments
 (0)