-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpyproject.toml
84 lines (73 loc) · 1.98 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
[build-system]
requires = ["hatchling>=1.10.0", "hatch-vcs"]
build-backend = "hatchling.build"
[project]
name = "ipyautoui"
dynamic = ["version"]
description = "wrapper that sits on top of ipywidgets and other ipy widget libraries to template / automate the creation of widget forms. Uses pydantic to create defined data-container and serialisation to JSON. Includes example patterns for adding new custom widgets."
readme = "README.md"
authors = [{ name = "John Gunstone", email = "[email protected]" }]
keywords = ["ipyautoui"]
classifiers = [
"Development Status :: 2 - Pre-Alpha",
"Intended Audience :: Developers",
"Natural Language :: English",
"Programming Language :: Python :: 3.9",
]
dependencies = [
"immutables",
"ipython",
"ipywidgets>8",
"jupyterlab>=4.2",
"ipydatagrid>=1.3.2", #312
"ipyfilechooser", # make optional
"ipyvuetify", # make optional
"markdown",
"jsonref",
"numpy",
"openpyxl",
"pandas",
"pydantic>=2",
"pydantic-settings",
"pydantic-extra-types",
"PyYAML",
"stringcase",
"wcmatch",
]
[project.optional-dependencies]
tests = [
"pytest",
"maplocal==0.2.1",
"pytest_examples",
"hatch",
"jupyterlab",
"jupytext",
"voila"
]
[project.urls]
Homepage = "https://github.com/maxfordham/ipyautoui"
[tool.hatch.version]
source = "vcs"
[tool.hatch.build.hooks.vcs]
version-file = "src/ipyautoui/_version.py"
[tool.hatch.build.targets.sdist]
include = ["/src/ipyautoui"]
[tool.pytest.ini_options]
pythonpath = "src"
testpaths = ["tests"]
[tool.pixi.project]
channels = ["conda-forge"]
platforms = ["linux-64"]
[tool.pixi.pypi-dependencies]
ipyautoui = { path = ".", editable = true }
[tool.pixi.environments]
default = { solve-group = "default" }
tests = { features = ["tests"], solve-group = "default" }
[tool.pixi.tasks]
[tool.pixi.feature.tests.tasks]
tests = "pytest"
check = "ruff check"
build = "hatch build"
demo = "voila docs/demo.ipynb"
jlab = "jupyter lab"
# format = "ruff format"