Files
the-littlest-jupyterhub/setup.py
Min RK 13648050ae single yaml implementation
consolidate to a single yaml implementation,
removing pyyaml
2019-02-11 13:29:01 +01:00

24 lines
594 B
Python

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(),
include_package_data=True,
install_requires=[
'ruamel.yaml==0.15.*',
'jinja2',
'pluggy>0.7<1.0'
],
entry_points={
'console_scripts': [
'tljh-config = tljh.config:main',
],
},
)