forked from jupyterhub/kubespawner
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
46 lines (43 loc) · 1.25 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
import sys
from setuptools import find_packages, setup
v = sys.version_info
if v[:2] < (3, 7):
error = "ERROR: kubespawner requires Python version 3.7 or above."
print(error, file=sys.stderr)
sys.exit(1)
setup(
name='jupyterhub-kubespawner',
version='4.1.1.dev',
install_requires=[
'escapism',
'python-slugify',
'jupyterhub>=0.9',
'jinja2',
'kubernetes_asyncio>=19.15.1',
'urllib3',
'pyYAML',
],
python_requires='>=3.7',
extras_require={
'test': [
'bump2version',
'kubernetes>=11',
'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',
},
)