forked from yuvipanda/jupyter-sparkui-proxy
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
22 lines (21 loc) · 749 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
import setuptools
from glob import glob
setuptools.setup(
name="jupyter-sparkui-proxy",
version='1.0.1',
url="https://github.com/yuvipanda/jupyter-sparkui-proxy",
author="Yuvi Panda",
license="BSD 3-Clause",
packages=setuptools.find_packages(),
install_requires=['jupyter-server-proxy>=1.0.1'],
python_requires='>=3.5',
classifiers=[
'Framework :: Jupyter',
],
data_files=[
('etc/jupyter/jupyter_notebook_config.d', ['jupyter_sparkui_proxy/etc/jupyter-sparkui-proxy-notebookserverextension.json']),
('etc/jupyter/jupyter_server_config.d', ['jupyter_sparkui_proxy/etc/jupyter-sparkui-proxy-jupyterserverextension.json']),
],
include_package_data=True,
zip_safe=False
)