-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
68 lines (56 loc) · 1.99 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
from setuptools import setup
from setuptools.command.develop import develop
import os
import sys
try:
import jupyter_core.paths as jupyter_core_paths
except:
jupyter_core_paths = None
pjoin = os.path.join
class DevelopCmd(develop):
prefix_targets = [
('nbconvert/templates', 'pale-sand-navy')
]
def run(self):
target_dir = os.path.join(sys.prefix, 'share', 'jupyter')
if '--user' in sys.prefix: # TODO: is there a better way to find out?
target_dir = jupyter_core_paths.user_dir()
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(DevelopCmd, self).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))
with open('README.md', 'r') as readme:
long_description = readme.read()
setup_args = {
'name': 'nbconvert-theme-pale-sand-navy',
'version': '0.3.1',
'packages': [],
'data_files': data_files,
'install_requires': [
],
'author': 'Jelle Schutter',
'author_email': '[email protected]',
'long_description': long_description,
'long_description_content_type': 'text/markdown',
'url': 'https://github.com/jelleschutter/nbconvert-theme-pale-sand-navy',
'cmdclass': {
'develop': DevelopCmd,
} if jupyter_core_paths else {},
}
if __name__ == '__main__':
setup(**setup_args)