Empty package markers (inbound_verify/, sites/, cli/) plus pyproject.toml with console_scripts entry points and dependency floors. Co-Authored-By: Claude <noreply@anthropic.com>
29 lines
728 B
TOML
29 lines
728 B
TOML
[build-system]
|
|
requires = ["setuptools>=68"]
|
|
build-backend = "setuptools.build_meta"
|
|
|
|
[project]
|
|
name = "inbound-verify"
|
|
version = "0.1.0"
|
|
description = "物流到货数据自动下载与应到未到核对工具"
|
|
requires-python = ">=3.10"
|
|
dependencies = [
|
|
"pandas>=2.0.0",
|
|
"playwright>=1.40.0",
|
|
"openpyxl>=3.1.0",
|
|
"PyYAML>=6.0",
|
|
"websocket-client>=1.0.0",
|
|
"fastapi>=0.110.0",
|
|
"uvicorn>=0.27.0",
|
|
"apscheduler>=3.10.0",
|
|
"psycopg[binary]>=3.1",
|
|
]
|
|
|
|
[project.scripts]
|
|
inbound-verify = "inbound_verify.cli.router:main"
|
|
inbound-verify-server = "inbound_verify.cli.server:main"
|
|
inbound-verify-db = "inbound_verify.store:main"
|
|
|
|
[tool.setuptools.packages.find]
|
|
include = ["inbound_verify*"]
|