forked from SylvainCorlay/nbconvert-acme
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
63 lines (52 loc) · 1.91 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
import os
import sys
from setuptools import setup
from setuptools.command.develop import develop
try:
import jupyter_core.paths as jupyter_core_paths
except ModuleNotFoundError:
jupyter_core_paths = None
class DevelopCmd(develop):
prefix_targets = [
("nbconvert/templates", 'flowkey')
]
def run(self):
target_dir = os.path.join(sys.prefix, 'share', 'jupyter')
if jupyter_core_paths:
#TODO: potentially brittle logic: see https://jupyter.readthedocs.io/en/latest/use/jupyter-directories.html#envvar-JUPYTER_PATH
target_dir = jupyter_core_paths.jupyter_path()[1]
target_dir = os.path.join(target_dir)
for prefix_target, name in self.prefix_targets:
source = os.path.join('share', 'jupyter', prefix_target, name)
target = os.path.join(target_dir, prefix_target, name)
target_subdir = os.path.dirname(target)
if not os.path.exists(target_subdir):
os.makedirs(target_subdir)
rel_source = os.path.relpath(os.path.abspath(source), os.path.abspath(target_subdir))
try:
os.remove(target)
except:
pass
print(rel_source, '->', target)
os.symlink(rel_source, target)
super().run()
data_files = []
for root, dirs, files in os.walk('share'):
root_files = [os.path.join(root, i) for i in files]
data_files.append((root, root_files))
setup_args = {
'name': 'nbconvert_flowkey',
'version': '0.1.0',
'packages': [],
'data_files': data_files,
'install_requires': [
],
'author': 'Paul Wlodkowski',
'author_email': 'paul@flowkey.com',
'url': 'https://github.com/pawlodkowski/nbconvert_flowkey',
'cmdclass': {
'develop': DevelopCmd, #https://stackoverflow.com/a/27820612/17242197
} if jupyter_core_paths else {},
}
if __name__ == '__main__':
setup(**setup_args)