This repository has been archived by the owner on Sep 16, 2024. It is now read-only.
forked from vega/ipyvega
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
102 lines (86 loc) · 3.41 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
96
97
98
99
100
101
102
LONG_DESCRIPTION = """
IPython Vega
============
IPython/Jupyter notebook module for `Vega <https://github.com/vega/vega/>`_
and `Vega-Lite <https://github.com/vega/vega-lite/>`_.
Notebooks with embedded visualizations can be viewed on github and nbviewer.
For more information, see https://github.com/vega/ipyvega.
Installation Notes
------------------
When installing from PyPI, extra steps may be required to enable the Jupyter
notebook extension. For more information, see the
`github page <https://github.com/vega/ipyvega>`_.
"""
DESCRIPTION = "IPyVega: An IPython/Jupyter widget for Vega 5 and Vega-Lite 3"
NAME = "vega"
PACKAGES = ['vega',
'vega.tests']
PACKAGE_DATA = {'vega': ['static/*.js',
'static/*.js.map',
'static/*.html']}
AUTHOR = 'Dominik Moritz'
AUTHOR_EMAIL = '[email protected]'
URL = 'http://github.com/vega/ipyvega'
DOWNLOAD_URL = 'http://github.com/vega/ipyvega'
LICENSE = 'BSD 3-clause'
DATA_FILES = [
('share/jupyter/nbextensions/jupyter-vega', [
'vega/static/index.js',
'vega/static/index.js.map',
'vega/static/widget.js',
'vega/static/widget.js.map',
]),
('etc/jupyter/nbconfig/notebook.d' , ['vega.json'])
]
ENTRY_POINTS = {'altair.vegalite.v3.renderer': ['notebook=vega.vegalite:entry_point_renderer'],
'altair.vega.v5.renderer': ['notebook=vega.vega:entry_point_renderer']
}
EXTRAS_REQUIRE = {'widget': ['ipywidgets']}
import io
import os
import re
try:
from setuptools import setup
except ImportError:
from distutils.core import setup
def read(path, encoding='utf-8'):
path = os.path.join(os.path.dirname(__file__), path)
with io.open(path, encoding=encoding) as fp:
return fp.read()
def version(path):
"""Obtain the packge version from a python file e.g. pkg/__init__.py
See <https://packaging.python.org/en/latest/single_source_version.html>.
"""
version_file = read(path)
version_match = re.search(r"""^__version__ = ['"]([^'"]*)['"]""",
version_file, re.M)
if version_match:
return version_match.group(1)
raise RuntimeError("Unable to find version string.")
VERSION = version('vega/__init__.py')
setup(name=NAME,
version=VERSION,
description=DESCRIPTION,
long_description=LONG_DESCRIPTION,
author=AUTHOR,
author_email=AUTHOR_EMAIL,
url=URL,
download_url=DOWNLOAD_URL,
license=LICENSE,
packages=PACKAGES,
package_data=PACKAGE_DATA,
data_files=DATA_FILES,
entry_points=ENTRY_POINTS,
extras_require=EXTRAS_REQUIRE,
include_package_data=True,
classifiers=[
'Development Status :: 5 - Production/Stable',
'Environment :: Console',
'Intended Audience :: Science/Research',
'License :: OSI Approved :: BSD License',
'Natural Language :: English',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6'],
)