2018-06-26 18:35:19 -07:00
|
|
|
from setuptools import setup, find_packages
|
|
|
|
|
|
|
|
|
|
setup(
|
|
|
|
|
name='the-littlest-jupyterhub',
|
|
|
|
|
version='0.1',
|
|
|
|
|
description='A small JupyterHub distribution',
|
|
|
|
|
url='https://github.com/yuvipanda/the-littlest-jupyterhub',
|
|
|
|
|
author='Yuvi Panda',
|
|
|
|
|
author_email='yuvipanda@gmail.com',
|
|
|
|
|
license='3 Clause BSD',
|
|
|
|
|
packages=find_packages(),
|
2018-06-27 00:29:42 -07:00
|
|
|
include_package_data=True,
|
|
|
|
|
install_requires=[
|
2018-07-21 00:20:29 -07:00
|
|
|
'ruamel.yaml==0.15.*',
|
|
|
|
|
'jinja2',
|
2018-08-11 00:42:28 -07:00
|
|
|
'pluggy>0.7<1.0'
|
2018-07-27 21:08:26 -07:00
|
|
|
],
|
|
|
|
|
entry_points={
|
|
|
|
|
'console_scripts': [
|
2018-07-21 00:20:29 -07:00
|
|
|
'tljh-config = tljh.config:main',
|
|
|
|
|
],
|
|
|
|
|
},
|
2018-06-26 18:35:19 -07:00
|
|
|
)
|