forked from ssciwr/ipywidgets-jsonschema
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
48 lines (44 loc) · 1.06 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
[build-system]
requires = [
"setuptools>=61",
"setuptools_scm >=7",
"wheel",
]
build-backend = "setuptools.build_meta"
[project]
name = "ipywidgets_jsonschema"
dynamic = ["version"]
description = "Widget Generator for JSON schema"
readme = "README.md"
maintainers =[
{ name = "Dominic Kempf", email = "ssc@iwr.uni-heidelberg.de" }
]
license = { text = "LICENSE.md" }
classifiers = [
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
]
dependencies = [
"IPython",
"ipywidgets",
"jsonschema<5",
"packaging",
"traitlets",
]
[tool.setuptools]
packages = [
"ipywidgets_jsonschema",
]
[tool.pytest.ini_options]
testpaths = [
"tests",
"demo",
]
# Configure setuptools_scm, which extracts the version number from
# the version control system. For more information see its documentation:
# https://github.com/pypa/setuptools_scm
[tool.setuptools_scm]
version_scheme = "post-release"
local_scheme = "node-and-date"
write_to = "ipywidgets_jsonschema/_version.py"