-
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpyproject.toml
75 lines (70 loc) · 1.65 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
[build-system]
requires = [
"hatchling",
]
build-backend = "hatchling.build"
[project]
name = "py5jupyter"
description = "Jupyter tools for py5"
readme = "README.md"
requires-python = ">=3.9"
authors = [
{ name = "Jim Schmitz", email = "[email protected]" },
]
keywords = [
"IPython",
"Jupyter",
"Processing",
"Widgets",
]
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"Intended Audience :: Education",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: GNU Lesser General Public License v2 (LGPLv2)",
"Programming Language :: Java",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Topic :: Artistic Software",
"Topic :: Multimedia :: Graphics",
]
dependencies = [
"ipykernel>=6.29.5",
"ipython>=8.18",
"jupyter>=1.0",
"py5>=0.10.1a1",
"traitlets>=5.14",
]
version = "0.2.1a0"
[project.license]
file = "LICENSE"
[project.optional-dependencies]
docs = [
"jupyter_sphinx",
"nbsphinx",
"nbsphinx-link",
"pypandoc",
"pytest_check_links",
"recommonmark",
"sphinx>=1.5",
"sphinx_rtd_theme",
]
examples = []
test = [
"nbval",
"pytest-cov",
"pytest>=4.6",
]
[project.urls]
"Bug Tracker" = "https://github.com/py5coding/py5jupyter/issues"
Documentation = "https://py5coding.org/"
Download = "https://pypi.org/project/py5jupyter"
Homepage = "https://py5coding.org/"
"Source Code" = "https://github.com/py5coding/py5jupyter"
[tool.hatch.build.targets.sdist]
exclude = [
".github",
]