File tree Expand file tree Collapse file tree 1 file changed +13
-8
lines changed
Expand file tree Collapse file tree 1 file changed +13
-8
lines changed Original file line number Diff line number Diff line change 11from setuptools import setup
22
3+ with open ("README.md" ) as f :
4+ long_description = f .read ()
5+
36setup (
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)
You can’t perform that action at this time.
0 commit comments