-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpyproject.toml
63 lines (56 loc) · 1.57 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
[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",
"ipydatagrid>=1.1.14",
"ipyfilechooser", # make optional
"ipyvuetify", # make optional
"markdown",
"Markdown",
"jsonref",
"numpy",
"openpyxl",
"pandas",
"pydantic>2",
"pydantic-settings",
"pydantic-extra-types",
"PyYAML",
"stringcase",
"wcmatch",
]
[project.optional-dependencies]
tests = [
"pytest",
"maplocal==0.2.1"
]
[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.hatch.envs.ipyautoui-dev]
# type = "conda"
# command = "mamba"
# ^ don't understand how this works...
[tool.pytest.ini_options]
pythonpath = "src"
testpaths = ["tests"]