-
Notifications
You must be signed in to change notification settings - Fork 45
/
setup.py
36 lines (34 loc) · 978 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
28
29
30
31
32
33
34
35
36
from setuptools import setup
with open("README.md") as f:
long_description = f.read()
setup(
name="jupyterhub-systemdspawner",
version="1.0.3.dev",
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": [
"systemd = systemdspawner:SystemdSpawner",
"systemdspawner = systemdspawner:SystemdSpawner",
],
},
python_requires=">=3.8",
install_requires=[
"jupyterhub>=2.3.0",
"tornado>=5.1",
],
extras_require={
"test": [
"pytest",
"pytest-asyncio",
"pytest-cov",
"pytest-jupyterhub",
],
},
)