-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
47 lines (42 loc) · 1.19 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
[project]
name = "app_starter_gui"
version = "0.1.0"
description = "gui"
authors = [
{name = "Hopsakee", email = "[email protected]"},
{name = "Jelle de Jong", email = "[email protected]"},
]
dependencies = [
"nbdev>=2.3.34",
"fastcore>=1.7.28",
"gradio>=5.12.0",
"jupyterlab-quarto>=0.3.5",
"pyyaml>=6.0.2"
]
requires-python = "==3.10.*"
readme = "README.md"
license = {text = "MIT"}
keywords = ["nbdev jupyter notebook python"]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"License :: OSI Approved :: Apache Software License",
"Natural Language :: English",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
]
[project.urls]
Homepage = "https://github.com/Hopsakee/app_starter_gui"
[project.optional-dependencies]
dev = []
[project.entry-points.nbdev]
app_starter_gui = "app_starter_gui._modidx:d"
[tool.pdm]
distribution = true
[build-system]
requires = ["pdm-backend"]
build-backend = "pdm.backend"