forked from jupyterhub/kubespawner
-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
31 lines (29 loc) · 832 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
from __future__ import print_function
from setuptools import setup, find_packages
import sys
v = sys.version_info
if v[:2] < (3, 5):
error = "ERROR: jupyterhub-kubespawner requires Python version 3.5 or above."
print(error, file=sys.stderr)
sys.exit(1)
setup(
name='jupyterhub-kubespawner',
version='0.8.1',
install_requires=[
'jupyterhub>=0.8',
'pyYAML',
'kubernetes==6.*',
'escapism',
'jinja2',
'async_generator>=1.8',
],
python_requires = ">=3.5",
setup_requires=['pytest-runner'],
tests_require=['pytest'],
description='JupyterHub Spawner targeting Kubernetes',
url='http://github.com/jupyterhub/kubespawner',
author='Yuvi Panda',
author_email='[email protected]',
license='BSD',
packages=find_packages(),
)