-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathsetup.py
More file actions
183 lines (154 loc) · 5.75 KB
/
setup.py
File metadata and controls
183 lines (154 loc) · 5.75 KB
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
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
from __future__ import print_function
from setuptools import setup, find_packages, Command
from setuptools.command.sdist import sdist
from setuptools.command.build_py import build_py
from setuptools.command.egg_info import egg_info
from subprocess import check_call
import glob
import json
import os
import shutil
import sys
from os.path import join as pjoin
here = os.path.dirname(os.path.abspath(__file__))
is_repo = os.path.exists(pjoin(here, '.git'))
tar_path = pjoin(here, 'jupyterlab_gcsfilebrowser*.tgz')
package_json = os.path.join(here, 'package.json')
requirements = os.path.join(here, 'requirements.txt')
npm_path = os.pathsep.join([
pjoin(here, 'node_modules', '.bin'),
os.environ.get('PATH', os.defpath),
])
from distutils import log
log.info('Starting setup.py')
log.info('$PATH=%s' % os.environ['PATH'])
LONG_DESCRIPTION = 'Google Cloud Storage Notebooks File Browser Extension'
def ts_prerelease(command, strict=False):
"""decorator for building minified TS/CSS prior to another command"""
class DecoratedCommand(command):
def run(self):
tsdeps = self.distribution.get_command_obj('tsdeps')
if not is_repo and all(os.path.exists(t) for t in tsdeps.targets):
# sdist, nothing to do
command.run(self)
return
try:
self.distribution.run_command('tsdeps')
except Exception as e:
missing = [t for t in tsdeps.targets if not os.path.exists(t)]
if strict or missing:
log.error('Rebuilding TS and CSS failed')
if missing:
log.error('Missing files: %s' % missing)
raise e
else:
log.warn('Rebuilding TS and CSS failed (not a problem)')
log.warn(str(e))
command.run(self)
update_package_data(self.distribution)
return DecoratedCommand
def update_package_data(distribution):
"""update package_data to catch changes during setup"""
build_py = distribution.get_command_obj('build_py')
# re-init build_py options which load package_data
build_py.finalize_options()
def get_data_files():
"""Get the data files for the package."""
return [
('', [
os.path.relpath(package_json, '.'),
os.path.relpath(requirements, '.'),
]),
('share/jupyter/lab/extensions', [
os.path.relpath(f, '.') for f in glob.glob(tar_path)
]),
('etc/jupyter/jupyter_notebook_config.d', [
'jupyter-config/jupyter_notebook_config.d/jupyterlab_gcsfilebrowser.json'
])
]
class NPM(Command):
description = 'Installs package.json dependencies using npm'
user_options = []
node_modules = pjoin(here, 'node_modules')
targets = []
def initialize_options(self):
pass
def finalize_options(self):
pass
def has_npm(self):
try:
check_call(['npm', '--version'])
return True
except Exception:
return False
def should_run_npm_install(self):
node_modules_exists = os.path.exists(self.node_modules)
return self.has_npm() and not node_modules_exists
def should_run_npm_pack(self):
return self.has_npm()
def run(self):
has_npm = self.has_npm()
if not has_npm:
log.error("`npm` unavailable. If you're running this command using sudo, make sure `npm` is available to sudo")
env = os.environ.copy()
env['PATH'] = npm_path
if self.should_run_npm_install():
log.info("Installing build dependencies with npm. This may take a while...")
check_call(['npm', 'install'], cwd=here, stdout=sys.stdout, stderr=sys.stderr)
os.utime(self.node_modules, None)
if self.should_run_npm_pack():
log.info("Packing jupyterlab_gcsfilebrowser into archive")
check_call(['npm', 'pack'], cwd=here, stdout=sys.stdout, stderr=sys.stderr)
files = glob.glob(tar_path)
self.targets.append(tar_path if not files else files[0])
for t in self.targets:
if not os.path.exists(t):
msg = 'Missing file: %s' % t
if not has_npm:
msg += '\nnpm is required to build a development version of jupyterlab_gcp_scheduler'
raise ValueError(msg)
self.distribution.data_files = get_data_files()
# update package data in case this created new files
update_package_data(self.distribution)
version = ''
with open(package_json) as f:
version = json.load(f)['version']
requires = []
with open(requirements) as f:
for l in f:
if not l.startswith("#"):
requires.append(l.strip())
setup_args = {
'name': 'jupyterlab_gcsfilebrowser',
'version': version,
'description': 'GCS Notebooks File Browser Extension',
'long_description': LONG_DESCRIPTION,
'license': 'MIT',
'include_package_data': True,
'data_files': get_data_files(),
'install_requires': requires,
'packages': find_packages(),
'zip_safe': False,
'cmdclass': {
'build_py': ts_prerelease(build_py),
'egg_info': ts_prerelease(egg_info),
'sdist': ts_prerelease(sdist, strict=True),
'tsdeps': NPM,
},
'author': 'GCP AI Platform UI Team',
'author_email': 'caip-ui-eng@google.com',
'url': 'https://cloud.google.com/ai-platform-notebooks/',
'keywords': [
'ipython',
'jupyter',
'gcp',
'google cloud',
],
'classifiers': [
'Intended Audience :: Developers',
'Intended Audience :: Science/Research',
'Intended Audience :: System Administrators',
'Programming Language :: Python :: 3',
],
}
setup(**setup_args)