|
4 | 4 | readme = f.read()
|
5 | 5 |
|
6 | 6 | 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", |
11 | 11 | author="Project Jupyter Contributors", # founded by Yuvi Panda
|
12 | 12 |
|
13 |
| - license='3 Clause BSD', |
| 13 | + license="3 Clause BSD", |
14 | 14 | long_description=readme,
|
15 |
| - long_description_content_type='text/markdown', |
| 15 | + long_description_content_type="text/markdown", |
16 | 16 | entry_points={
|
17 | 17 | # Thanks to this, user are able to do:
|
18 | 18 | #
|
19 | 19 | # c.JupyterHub.authenticator_class = "tmp"
|
20 | 20 | #
|
21 | 21 | # ref: https://jupyterhub.readthedocs.io/en/4.0.0/reference/authenticators.html#registering-custom-authenticators-via-entry-points
|
22 | 22 | #
|
23 |
| - 'jupyterhub.authenticators': [ |
24 |
| - 'tmp = tmpauthenticator:TmpAuthenticator', |
| 23 | + "jupyterhub.authenticators": [ |
| 24 | + "tmp = tmpauthenticator:TmpAuthenticator", |
25 | 25 | ],
|
26 | 26 | },
|
27 | 27 | packages=find_packages(),
|
|
0 commit comments