forked from jupyterhub/kubespawner
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
50 lines (46 loc) · 1.34 KB
/
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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
from __future__ import print_function
import sys
from setuptools import find_packages
from setuptools import setup
v = sys.version_info
if v[:2] < (3, 6):
error = "ERROR: jupyterhub-kubespawner requires Python version 3.6 or above."
print(error, file=sys.stderr)
sys.exit(1)
setup(
name='jupyterhub-kubespawner',
version='2.0.1.dev',
install_requires=[
'async_generator>=1.8',
'escapism',
'python-slugify',
'jupyterhub>=0.8',
'jinja2',
'kubernetes>=10.1.0',
'urllib3',
'pyYAML',
],
python_requires='>=3.6',
extras_require={
'test': [
'bump2version',
'flake8',
'pytest>=5.4',
'pytest-cov',
'pytest-asyncio>=0.11.0',
]
},
description='JupyterHub Spawner for Kubernetes',
url='http://github.com/jupyterhub/kubespawner',
author='Jupyter Contributors',
author_email='[email protected]',
long_description=open("README.md").read(),
long_description_content_type="text/markdown",
license='BSD',
packages=find_packages(),
project_urls={
'Documentation': 'https://jupyterhub-kubespawner.readthedocs.io',
'Source': 'https://github.com/jupyterhub/kubespawner',
'Tracker': 'https://github.com/jupyterhub/kubespawner/issues',
},
)