Files
the-littlest-jupyterhub/setup.py

29 lines
735 B
Python
Raw Normal View History

from setuptools import find_packages, setup
2018-06-26 18:35:19 -07:00
setup(
name="the-littlest-jupyterhub",
2024-09-20 22:03:06 +02:00
version="2.0.0.dev",
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=[
"ruamel.yaml==0.17.*",
"jinja2",
"pluggy==1.*",
"backoff",
2024-09-05 12:03:26 +02:00
"filelock",
"requests",
"bcrypt",
2023-05-16 20:58:53 +02:00
"jupyterhub-traefik-proxy==1.*",
],
entry_points={
"console_scripts": [
"tljh-config = tljh.config:main",
]
},
2018-06-26 18:35:19 -07:00
)