chore: scaffold inbound_verify package and pyproject
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>
This commit is contained in:
28
pyproject.toml
Normal file
28
pyproject.toml
Normal file
@@ -0,0 +1,28 @@
|
||||
[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*"]
|
||||
Reference in New Issue
Block a user