forked from jupyterhub/the-littlest-jupyterhub
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
28 lines (27 loc) · 780 Bytes
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
from setuptools import find_packages, setup
setup(
name="the-littlest-jupyterhub-docker",
version="1.0.1.dev",
description="A small JupyterHub distribution that spawns user servers in individual Docker containers",
url="https://github.com/fabiansalamo/the-littlest-jupyterhub-docker",
author="Fabian Salamo",
author_email="[email protected]",
license="MIT",
packages=find_packages(),
include_package_data=True,
install_requires=[
"ruamel.yaml==0.17.*",
"jinja2",
"pluggy==1.*",
"backoff",
"requests",
"bcrypt",
"jupyterhub-traefik-proxy==1.*",
"docker"
],
entry_points={
"console_scripts": [
"tljh-config = tljh.config:main",
]
},
)