This repository has been archived by the owner on Jun 28, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathsetup.py
81 lines (73 loc) · 2.22 KB
/
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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
import os
import platform
import re
from setuptools import setup, find_packages
def read(fname):
return open(os.path.join(os.path.dirname(__file__), fname)).read()
def notebook_version():
with open("env.yml", "r") as fd:
env = fd.read()
r = re.compile("notebook==.*\n")
nb = r.search(env).group().strip().split("==")[1]
return nb
INSTALL_REQUIRES = [
]
EXTRAS_REQUIRES = {
"cli": [
"notebook>=6.3.0,<6.4.0",
"version_parser>=1.0.0,<1.1.0",
"questionary",
"databricks_cli",
"jupyterlab>=3.0.0,<3.1.0",
"ipywidgets>=7.6.3,<7.7.0",
"ipykernel>=5.5.3,<5.6.0",
"tornado>=6.1.0,<6.2.0",
"widgetsnbextension==3.5.1",
"ssh-ipykernel==1.2.3",
"inquirer==2.6.3",
"pyperclip>=1.8.2,<1.9.0",
"databrickslabs_jupyterlab_status==2.2.1"
],
"dev": [
"pytest",
"jupyter-console",
"pyyaml",
"bumpversion",
"twine",
"yapf",
"pylint"
],
}
setup(
name="databrickslabs_jupyterlab",
version="2.2.1",
author="Bernhard Walter",
author_email="[email protected]",
url="https://github.com/databrickslabs/Jupyterlab-Integration",
description=("Remote JupyterLab kernel for Databricks"),
long_description_content_type="text/markdown",
license="Databricks License",
keywords="databricks jupyter jupyterlab spark",
packages=find_packages(exclude=["databrickslabs-jupyterlab-status"]),
scripts=["databrickslabs-jupyterlab", "dj", "dj.bat"],
install_requires=INSTALL_REQUIRES,
extras_require=EXTRAS_REQUIRES,
data_files=[
# (
# "etc/jupyter/jupyter_notebook_config.d",
# ["databrickslabs_jupyterlab/status/jupyter_notebook/databrickslabs_jupyterlab.json"],
# ),
(
"etc/jupyter/jupyter_server_config.d",
["databrickslabs_jupyterlab/status/jupyter_server/databrickslabs_jupyterlab.json"],
),
],
include_package_data=True,
long_description=read("PYPI.md"),
classifiers=[
"Development Status :: 4 - Beta",
"Topic :: Utilities",
"License :: Other/Proprietary License",
],
zip_safe=False,
)