forked from jupyterhub/firstuseauthenticator
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
27 lines (24 loc) · 894 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
import os
from setuptools import setup, find_packages
# Get the current package version.
here = os.path.abspath(os.path.dirname(__file__))
version_ns = {}
with open(os.path.join(here, 'firstuseauthenticator', '_version.py')) as f:
exec(f.read(), {}, version_ns)
setup(
name='jupyterhub-firstuseauthenticator',
version=version_ns['__version__'],
description='JupyterHub Authenticator that lets users set passwords on first use',
long_description=open("README.md").read(),
long_description_content_type="text/markdown",
url="https://github.com/jupyterhub/firstuseauthenticator",
author="Yuvi Panda, Project Jupyter Contributors",
author_email="yuvipanda@gmail.com",
license="BSD-3-Clause",
python_requires=">=3.6",
packages=find_packages(),
install_requires=['bcrypt', 'jupyterhub>=1.3'],
package_data={
'': ['*.html'],
},
)