forked from jupyter-widgets/ipyleaflet
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
83 lines (71 loc) · 2.45 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
# -*- coding: utf-8 -*-
import os
from setuptools import setup, find_packages
from jupyter_packaging import (
create_cmdclass,
install_npm,
ensure_targets,
combine_commands,
get_version,
skip_if_exists
)
# the name of the package
name = 'ipyleaflet'
long_description = 'A Jupyter widget for dynamic Leaflet maps'
here = os.path.dirname(os.path.abspath(__file__))
# Get ipyleaflet version
version = get_version(os.path.join(name, '_version.py'))
js_dir = os.path.join(here, 'js')
# Representative files that should exist after a successful build
jstargets = [
os.path.join('ipyleaflet/nbextension', 'index.js'),
os.path.join('ipyleaflet/labextension', 'package.json'),
]
data_files_spec = [
('share/jupyter/nbextensions/jupyter-leaflet', 'ipyleaflet/nbextension', '*.*'),
('share/jupyter/labextensions/jupyter-leaflet', 'ipyleaflet/labextension', "**"),
('etc/jupyter/nbconfig/notebook.d', '.', 'jupyter-leaflet.json'),
]
cmdclass = create_cmdclass('jsdeps', data_files_spec=data_files_spec)
js_command = combine_commands(
install_npm(js_dir, npm=["yarn"], build_cmd='build'), ensure_targets(jstargets),
)
is_repo = os.path.exists(os.path.join(here, '.git'))
if is_repo:
cmdclass['jsdeps'] = js_command
else:
cmdclass['jsdeps'] = skip_if_exists(jstargets, js_command)
setup_args = dict(
name=name,
version=version,
description='A Jupyter widget for dynamic Leaflet maps',
long_description=long_description,
license='MIT License',
include_package_data=True,
install_requires=[
'ipywidgets>=7.6.0,<8',
'traittypes>=0.2.1,<3',
'xyzservices>=2021.8.1'
],
packages=find_packages(),
zip_safe=False,
cmdclass=cmdclass,
author='Project Jupyter',
author_email='jupyter@googlegroups.com',
url='https://github.com/jupyter-widgets/ipyleaflet',
keywords=['ipython', 'jupyter', 'widgets', 'graphics', 'GIS'],
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'Intended Audience :: Science/Research',
'Topic :: Multimedia :: Graphics',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10'
],
)
setup(**setup_args)