Files
the-littlest-jupyterhub/setup.py
GeorgianaElena c51006d798 Bump traefik-proxy version and remove pin.
The new traefik-proxy version shouldn't cause conflicts with other pkgs anymore
2021-02-24 16:22:44 +02:00

29 lines
713 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',
'passlib',
'backoff',
'requests',
'bcrypt',
'jupyterhub-traefik-proxy==0.2.*'
],
entry_points={
'console_scripts': [
'tljh-config = tljh.config:main',
],
},
)