-
Notifications
You must be signed in to change notification settings - Fork 145
/
pyproject.toml
118 lines (103 loc) · 2.03 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
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
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
[build-system]
requires = ["flit_core >=3.2,<4"]
build-backend = "flit_core.buildapi"
[project]
name = "solara"
authors = [{name = "Maarten A. Breddels", email = "[email protected]"}]
license = {file = "LICENSE"}
classifiers = ["License :: OSI Approved :: MIT License"]
dynamic = ["version", "description"]
packages = [
{ include = "solara" }
]
dependencies = [
"reacton>=0.16.0",
"ipywidgets<8",
"diskcache",
"filelock",
"markdown",
"pygments",
"pymdown-extensions",
"markdown-it-py",
"mdit-py-plugins",
"humanize",
"ipyvuetify",
"ipyvue>=1.8.0",
"numpy",
"pillow",
"jinja2",
"MarkupSafe<2.1",
"pydantic",
"click>=7.1.0",
"rich_click",
"uvicorn",
"watchgod",
"websockets",
"starlette",
"nbconvert",
"jupyter_server",
"jupyter_client>=7.0.0",
"watchdog",
"requests",
"pygments==2.10; python_version < '3.7'",
]
[tool.flit.external-data]
directory = "prefix"
[tool.flit.module]
name = "solara"
[project.optional-dependencies]
dev = [
"flake8",
"bqplot",
"bqplot-image-gl",
"vaex-core",
"vaex-hdf5",
"vaex-jupyter",
"black",
"mypy",
"plotly",
"types-requests",
"types-markdown",
"types-PyYAML",
"pytest",
"pytest-mock",
"pytest-cov",
"pytest-timeout",
"pre-commit",
"bump2version",
"dask[dataframe]; python_version < '3.7'",
"playwright; python_version > '3.6'",
"pytest-playwright; python_version > '3.6'",
]
assets = [
"solara-assets==1.0.3"
]
flask = [
"flask",
"flask-sock",
]
documentation = [
"numpy",
"bqplot",
"altair",
"ipycanvas",
"matplotlib",
"vega_datasets",
"plotly",
"vaex-core",
"vaex-hdf5",
]
[project.urls]
Home = "https://www.github.com/widgetti/solara"
[project.scripts]
solara = "solara.__main__:main"
[tool.black]
line-length = 160
[tool.ruff]
line-length = 160
[tool.isort]
profile = "black"
[tool.pytest.ini_options]
addopts = "--disable-warnings"
timeout = 180
python_files = "*.py"