17 lines
365 B
TOML
17 lines
365 B
TOML
[build-system]
|
|
requires = ["setuptools>=68"]
|
|
build-backend = "setuptools.build_meta"
|
|
|
|
[project]
|
|
name = "happy-birds-cracker"
|
|
version = "0.1.0"
|
|
description = "基于 MaaFramework 的滑动三消(消消乐)自动求解器"
|
|
requires-python = ">=3.10"
|
|
dependencies = [
|
|
"numpy>=1.24",
|
|
"opencv-python>=4.8",
|
|
]
|
|
|
|
[tool.setuptools.packages.find]
|
|
where = ["src"]
|