Skip to content

Commit ee566d5

Browse files
authored
Merge pull request #75 from minrk/setup-fmt
setup.py tweaks
2 parents a4d08fd + dfc045f commit ee566d5

File tree

1 file changed

+13
-8
lines changed

1 file changed

+13
-8
lines changed

setup.py

Lines changed: 13 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,22 +1,27 @@
11
from setuptools import setup
22

3+
with open("README.md") as f:
4+
long_description = f.read()
5+
36
setup(
4-
name='jupyterhub-systemdspawner',
5-
version='0.15.0',
6-
description='JupyterHub Spawner using systemd for resource isolation',
7-
long_description='See https://github.com/jupyterhub/systemdspawner for more info',
7+
name="jupyterhub-systemdspawner",
8+
version="0.16.0.dev0",
9+
description="JupyterHub Spawner using systemd for resource isolation",
10+
long_description=long_description,
11+
long_description_content_type="text/markdown",
812
url='https://github.com/jupyterhub/systemdspawner',
913
author='Yuvi Panda',
1014
author_email='yuvipanda@gmail.com',
1115
license='3 Clause BSD',
1216
packages=['systemdspawner'],
1317
entry_points={
14-
'jupyterhub.spawners': [
15-
'systemdspawner = systemdspawner:SystemdSpawner',
18+
"jupyterhub.spawners": [
19+
"systemd = systemdspawner:SystemdSpawner",
20+
"systemdspawner = systemdspawner:SystemdSpawner",
1621
],
1722
},
1823
install_requires=[
19-
'jupyterhub>=0.9',
20-
'tornado>=5.0'
24+
"jupyterhub>=0.9",
25+
"tornado>=5.0",
2126
],
2227
)

0 commit comments

Comments
 (0)