20 lines
423 B
TOML
20 lines
423 B
TOML
[build-system]
|
|
requires = ["setuptools>=68"]
|
|
build-backend = "setuptools.build_meta"
|
|
|
|
[project]
|
|
name = "cmbuyer-client"
|
|
version = "0.1.0"
|
|
description = "cmbuyer 采购工具桌面端"
|
|
requires-python = ">=3.11"
|
|
dynamic = ["dependencies"]
|
|
|
|
[project.scripts]
|
|
cmbuyer-client = "cmbuyer_client.app:main"
|
|
|
|
[tool.setuptools.packages.find]
|
|
where = ["src"]
|
|
|
|
[tool.setuptools.dynamic]
|
|
dependencies = { file = ["requirements.txt"] }
|