feat: complete production workflow migration

This commit is contained in:
2026-08-06 14:29:57 +08:00
parent 7f215e79c4
commit 8df5266abb
448 changed files with 56937 additions and 14619 deletions
+19 -4
View File
@@ -40,6 +40,13 @@ dependencies = [
[project.optional-dependencies]
test = ["pytest>=8.0"]
[dependency-groups]
dev = [
"build>=1.2",
"pytest>=8.0",
"ruff>=0.12",
]
[project.scripts]
gyxx = "gyxx_flow.cli:main"
@@ -47,10 +54,11 @@ gyxx = "gyxx_flow.cli:main"
where = ["src"]
[tool.setuptools.package-data]
"gyxx_flow.modules.content_marketing" = ["runtime/**/*"]
"gyxx_flow.modules.product_commerce" = ["runtime/**/*"]
"gyxx_flow.modules.shop_intelligence" = ["runtime/**/*"]
"gyxx_flow.modules.supply_chain" = ["runtime/**/*"]
"gyxx_flow.web" = ["*.html", "*.css", "*.js"]
"gyxx_flow.modules.content_marketing" = ["**/*"]
"gyxx_flow.modules.product_commerce" = ["**/*"]
"gyxx_flow.modules.shop_intelligence" = ["**/*"]
"gyxx_flow.modules.supply_chain" = ["**/*"]
[tool.setuptools.exclude-package-data]
"*" = ["**/__pycache__/**", "**/*.pyc", "**/*.pyo"]
@@ -59,5 +67,12 @@ where = ["src"]
pythonpath = ["src"]
testpaths = ["tests"]
[tool.ruff]
# The migrated business scripts keep their original lint baseline while the
# framework and focused critical scripts are checked in CI. New module code
# should be added to the focused CI list until this compatibility exclusion is
# retired module by module.
extend-exclude = ["src/gyxx_flow/modules/*/**"]
[tool.ruff.lint]
select = ["E4", "E7", "E9", "F", "I"]