-
Notifications
You must be signed in to change notification settings - Fork 65
/
pyproject.toml
53 lines (47 loc) · 1.32 KB
/
pyproject.toml
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
[tool.poetry]
name = "vega"
version = "3.6.0"
license = "BSD 3-clause"
description = "A Jupyter widget for Vega 5 and Vega-Lite 4"
authors = ["Dominik Moritz <domoritz@gmail.com>"]
packages = [
{ include = "vega" },
]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Environment :: Console",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: BSD License",
"Natural Language :: English",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9"
]
homepage = "https://github.com/vega/ipyvega"
repository = "https://github.com/vega/ipyvega"
exclude = ["notebooks/*"]
readme = "README.rst"
[tool.poetry.dependencies]
python = ">= 3.8"
jupyter = "^1.0.0"
pandas = "^1.0.0"
ipytablewidgets = "^0.2.3"
jupyterlab = {version = "3.0.11", optional = true}
[tool.poetry.dev-dependencies]
pytest = "^6.2"
altair = "^4.2.0"
[tool.poetry.extras]
widget = [
"ipywidgets"
]
jupyterlab = [
"jupyterlab"
]
[tool.poetry.plugins."altair.vegalite.v4.renderer"]
notebook = "vega.vegalite:entry_point_renderer"
[tool.poetry.plugins."altair.vega.v5.renderer"]
notebook = "vega.vega:entry_point_renderer"
[build-system]
requires = ["poetry>=0.12"]
build-backend = "poetry.masonry.api"