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:
1
inbound_verify/__init__.py
Normal file
1
inbound_verify/__init__.py
Normal file
@@ -0,0 +1 @@
|
|||||||
|
# inbound_verify package
|
||||||
1
inbound_verify/cli/__init__.py
Normal file
1
inbound_verify/cli/__init__.py
Normal file
@@ -0,0 +1 @@
|
|||||||
|
# inbound_verify.cli — 入口(交互菜单 / 服务)
|
||||||
1
inbound_verify/sites/__init__.py
Normal file
1
inbound_verify/sites/__init__.py
Normal file
@@ -0,0 +1 @@
|
|||||||
|
# inbound_verify.sites — 各承运商站点驱动
|
||||||
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