firstuseauthenticator/setup.py
2018-09-25 19:19:04 -03:00

16 lines
484 B
Python

from setuptools import setup, find_packages
setup(
name='jupyterhub-firstuseauthenticator',
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'],
package_data={
'': ['*.html'],
}
)