-
Notifications
You must be signed in to change notification settings - Fork 16
/
Copy pathsetup.py
29 lines (27 loc) · 1.19 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
import versioneer
from setuptools import setup
with open('README.rst') as f:
long_description = f.read()
setup(name='jupyterhub-yarnspawner',
version=versioneer.get_version(),
cmdclass=versioneer.get_cmdclass(),
license='BSD',
maintainer='Jim Crist',
maintainer_email='jiminy.crist@gmail.com',
description='JupyterHub Spawner for Apache Hadoop/YARN Clusters',
long_description=long_description,
url='http://github.com/jupyterhub/yarnspawner',
project_urls={
'Source': 'https://github.com/jupyterhub/yarnspawner',
'Issue Tracker': 'https://github.com/jupyterhub/yarnspawner/issues',
'Documentation': 'https://jupyterhub-yarnspawner.readthedocs.io'
},
keywords='YARN HDFS hadoop jupyterhub',
classifiers=['Topic :: System :: Systems Administration',
'Topic :: System :: Distributed Computing',
'License :: OSI Approved :: BSD License',
'Programming Language :: Python',
'Programming Language :: Python :: 3'],
packages=['yarnspawner'],
python_requires='>=3.5',
install_requires=['jupyterhub>=0.8', 'skein>=0.5.0'])