-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
92 lines (81 loc) · 1.6 KB
/
pyproject.toml
File metadata and controls
92 lines (81 loc) · 1.6 KB
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
85
86
87
88
89
90
91
[project]
name = "python-examples"
version = "0.1.0"
description = "Add your description here"
authors = [
{ name = "wwfyde", email = "wwfyde@163.com" }
]
dependencies = [
"pip>=24.2",
"fastapi[all]>=0.114.1",
"openai>=1.78.0",
"redis>=5.0.8",
"tenacity>=9.0.0",
"ipython>=8.27.0",
"jupyterlab>=4.2.5",
"matplotlib>=3.9.2",
"plotly>=5.24.1",
"numpy>=2.1.1",
"datasets>=3.0.0",
"notebook>=7.2.2",
"polars>=1.9.0",
"bokeh>=3.6.0",
"altair>=5.4.1",
"python-dotenv>=1.0.1",
"pillow>=11.0.0",
"nacos-sdk-python>=1.0.0",
"torch>=2.5.1",
"torchvision>=0.20.1",
"torchaudio>=2.5.1",
]
readme = "README.md"
requires-python = ">= 3.12"
[project.scripts]
"python-examples" = "python_examples:main"
[project.optional-dependencies]
standard = [
"orjson>=3.10.12",
]
[tool.uv]
package = true
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[dependency-groups]
dev = [
"hatchling>=1.27.0",
"ipython>=8.31.0",
"ipywidgets>=8.1.5",
"jupyterlab>=4.3.4",
"notebook>=7.3.2",
"pip>=24.3.1",
"pytest>=8.3.5",
"pytest-asyncio>=0.25.3",
]
pytorch = [
"torch>=2.5.1",
"torchvision>=0.20.1",
]
[tool.rye]
virtual = true
managed = true
dev-dependencies = [
"ipython>=8.27.0",
"ipywidgets>=8.1.5",
"notebook>=7.2.2",
]
[tool.hatch.metadata]
allow-direct-references = true
[tool.hatch.build]
include = [
"src/python_examples",
"config",
"recipes",
]
[tool.hatch.build.targets.wheel]
packages = [
"src/python_examples",
"config",
"recipes",
"packages/demo"
]