-
Notifications
You must be signed in to change notification settings - Fork 15
/
setup.py
95 lines (80 loc) · 2.53 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
82
83
84
85
86
87
88
89
90
91
92
93
94
95
from __future__ import print_function
from setuptools import setup, find_packages
import os
from os.path import join as pjoin
from distutils import log
from jupyter_packaging import (
create_cmdclass,
install_npm,
ensure_targets,
combine_commands,
get_version,
)
here = os.path.dirname(os.path.abspath(__file__))
log.set_verbosity(log.DEBUG)
log.info('setup.py entered')
log.info('$PATH=%s' % os.environ['PATH'])
name = 'jupyter_jsmol'
with open("README.md", "r") as fh:
long_description = fh.read()
# Get jupyter_jsmol version
version = get_version(pjoin(name, '_version.py'))
js_dir = pjoin(here, 'js')
# Representative files that should exist after a successful build
jstargets = [
pjoin(js_dir, 'dist', 'index.js'),
]
data_files_spec = [
('share/jupyter/nbextensions/jupyter-jsmol', 'jupyter_jsmol/nbextension', '**'),
('share/jupyter/nbextensions/jupyter-jsmol/jsmol', 'jsmol', '**'),
('share/jupyter/labextensions/jupyter-jsmol', 'jupyter_jsmol/labextension', '**'),
('share/jupyter/labextensions/jupyter-jsmol', '.', 'install.json'),
('etc/jupyter/nbconfig/notebook.d', '.', 'jupyter-jsmol.json'),
]
cmdclass = create_cmdclass('jsdeps', data_files_spec=data_files_spec)
cmdclass['jsdeps'] = combine_commands(
install_npm(js_dir, npm=['yarn'], build_cmd='build:prod'), ensure_targets(jstargets),
)
setup_args = dict(
name=name,
version=version,
description='JSmol viewer widget for Jupyter',
long_description=long_description,
long_description_content_type="text/markdown",
author='Adam Fekete',
author_email='[email protected]',
url='https://github.com/fekad/jupyter-jsmol',
keywords=[
'ipython',
'jupyter',
'widgets',
],
license='MIT',
classifiers=[
'Framework :: Jupyter',
'Intended Audience :: Developers',
'Intended Audience :: Science/Research',
'Topic :: Scientific/Engineering :: Physics',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
],
python_requires=">=3.6",
install_requires=[
'ipywidgets>=7.6.0',
],
extras_require={
"test": [
"pytest>=4.6",
"pytest-cov",
],
"examples": ["ase", "pymatgen"],
},
packages=find_packages(),
cmdclass=cmdclass,
include_package_data=True,
zip_safe=False,
)
setup(**setup_args)