2023-05-15 08:51:35 +00:00
|
|
|
from setuptools import find_packages, setup
|
2018-06-26 18:35:19 -07:00
|
|
|
|
|
|
|
|
setup(
|
2021-11-03 23:55:34 +01:00
|
|
|
name="the-littlest-jupyterhub",
|
2023-03-21 16:27:39 +01:00
|
|
|
version="1.0.0.dev0",
|
2021-11-03 23:55:34 +01:00
|
|
|
description="A small JupyterHub distribution",
|
|
|
|
|
url="https://github.com/jupyterhub/the-littlest-jupyterhub",
|
|
|
|
|
author="Jupyter Development Team",
|
|
|
|
|
author_email="jupyter@googlegroups.com",
|
|
|
|
|
license="3 Clause BSD",
|
2018-06-26 18:35:19 -07:00
|
|
|
packages=find_packages(),
|
2018-06-27 00:29:42 -07:00
|
|
|
include_package_data=True,
|
|
|
|
|
install_requires=[
|
2021-11-03 23:55:34 +01:00
|
|
|
"ruamel.yaml==0.17.*",
|
|
|
|
|
"jinja2",
|
|
|
|
|
"pluggy==1.*",
|
|
|
|
|
"backoff",
|
|
|
|
|
"requests",
|
|
|
|
|
"bcrypt",
|
2023-05-15 10:53:53 +02:00
|
|
|
"jupyterhub-traefik-proxy==1.0.0b3",
|
2018-07-27 21:08:26 -07:00
|
|
|
],
|
|
|
|
|
entry_points={
|
2021-11-03 23:55:34 +01:00
|
|
|
"console_scripts": [
|
|
|
|
|
"tljh-config = tljh.config:main",
|
2021-04-01 14:26:54 +03:00
|
|
|
]
|
2018-07-21 00:20:29 -07:00
|
|
|
},
|
2018-06-26 18:35:19 -07:00
|
|
|
)
|