diff --git a/setup.py b/setup.py index 83f2637..e363f06 100644 --- a/setup.py +++ b/setup.py @@ -1,22 +1,27 @@ from setuptools import setup +with open("README.md") as f: + long_description = f.read() + setup( - name='jupyterhub-systemdspawner', - version='0.15.0', - description='JupyterHub Spawner using systemd for resource isolation', - long_description='See https://github.com/jupyterhub/systemdspawner for more info', + name="jupyterhub-systemdspawner", + version="0.16.0.dev0", + description="JupyterHub Spawner using systemd for resource isolation", + long_description=long_description, + long_description_content_type="text/markdown", url='https://github.com/jupyterhub/systemdspawner', author='Yuvi Panda', author_email='yuvipanda@gmail.com', license='3 Clause BSD', packages=['systemdspawner'], entry_points={ - 'jupyterhub.spawners': [ - 'systemdspawner = systemdspawner:SystemdSpawner', + "jupyterhub.spawners": [ + "systemd = systemdspawner:SystemdSpawner", + "systemdspawner = systemdspawner:SystemdSpawner", ], }, install_requires=[ - 'jupyterhub>=0.9', - 'tornado>=5.0' + "jupyterhub>=0.9", + "tornado>=5.0", ], )