forked from jupyterhub/systemdspawner
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
27 lines (25 loc) · 782 Bytes
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
from setuptools import setup
with open("README.md") as f:
long_description = f.read()
setup(
name="jupyterhub-systemdspawner",
version="0.18.0.dev10",
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='[email protected]',
license='3 Clause BSD',
packages=['systemdspawner'],
entry_points={
"jupyterhub.spawners": [
"systemd = systemdspawner:SystemdSpawner",
"systemdspawner = systemdspawner:SystemdSpawner",
],
},
install_requires=[
"jupyterhub>=0.9",
"tornado>=5.0",
],
)