firstuseauthenticator/setup.py

14 lines
434 B
Python
Raw Permalink Normal View History

from setuptools import setup, find_packages
setup(
name='jupyterhub-firstuseauthenticator',
2018-09-04 11:20:21 -07:00
version='0.11',
description='JupyterHub Authenticator that lets users set passwords on first use',
url='https://github.com/yuvipanda/jupyterhub-firstuseauthenticator',
author='Yuvi Panda',
author_email='yuvipanda@gmail.com',
license='3 Clause BSD',
packages=find_packages(),
install_requires=['bcrypt']
)