-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
36 lines (31 loc) · 900 Bytes
/
pyproject.toml
File metadata and controls
36 lines (31 loc) · 900 Bytes
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
[project]
dependencies = [
"numpy>=2.2.6",
"opencv-python>=4.11.0.86",
"pywin32>=311",
"requests>=2.32.5",
"scikit-image>=0.25.2",
"toml>=0.10.2",
]
description = "斗地主cli客户端,依赖doudizhu-api进行识别和决策"
name = "doudizhu"
readme = "README.md"
requires-python = ">=3.10"
version = "0.1.0"
[tool.uv]
required-environments = [
"sys_platform == 'win32' and platform_machine == 'AMD64'",
]
[[tool.uv.index]]
default = true
url = "https://mirrors.aliyun.com/pypi/simple/"
[dependency-groups]
dev = ["ipykernel", "ruff"]
[tool.hatch.build]
packages = ["data", "happy", "utils"]
[build-system]
build-backend = "hatchling.build"
requires = ["hatchling"]
[project.scripts]
ddz = "happy.main:cli"
hello = "happy.main:hello"