-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
65 lines (57 loc) · 1.21 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
[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.44.1",
"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",
]
readme = "README.md"
requires-python = ">= 3.12"
[project.scripts]
"python-examples" = "python_examples:main"
[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",
]
[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.targets.wheel]
packages = ["src/python_examples"]