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',
|
2021-02-05 07:13:36 +08:00
|
|
|
url='https://github.com/jupyterhub/the-littlest-jupyterhub',
|
|
|
|
|
author='Jupyter Development Team',
|
|
|
|
|
author_email='jupyter@googlegroups.com',
|
2018-06-26 18:35:19 -07:00
|
|
|
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',
|
2019-02-13 14:10:28 +02:00
|
|
|
'pluggy>0.7<1.0',
|
|
|
|
|
'passlib',
|
2019-05-19 22:29:18 -07:00
|
|
|
'backoff',
|
2019-05-24 14:37:42 +03:00
|
|
|
'requests',
|
2019-07-10 15:07:40 +03:00
|
|
|
'bcrypt',
|
2021-02-24 16:22:44 +02:00
|
|
|
'jupyterhub-traefik-proxy==0.2.*'
|
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
|
|
|
)
|