Skip to content

Commit

Permalink
Merge pull request #75 from minrk/setup-fmt
Browse files Browse the repository at this point in the history
setup.py tweaks
  • Loading branch information
yuvipanda authored Dec 7, 2020
2 parents a4d08fd + dfc045f commit ee566d5
Showing 1 changed file with 13 additions and 8 deletions.
21 changes: 13 additions & 8 deletions setup.py
Original file line number Diff line number Diff line change
@@ -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",
],
)

0 comments on commit ee566d5

Please sign in to comment.