forked from jupyterhub/kubespawner
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
43 lines (41 loc) · 1.21 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
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.10.0.dev',
install_requires=[
'jupyterhub>=0.8',
'pyYAML',
'kubernetes>=7',
'escapism',
'jinja2',
'async_generator>=1.8',
],
python_requires='>=3.5',
extras_require={
'test': [
'pytest>=3.3',
'pytest-cov',
'pytest-asyncio',
]
},
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',
},
)