Files
uipath-explainator/pyproject.toml
Kingsmai 7003dfa0df feat: add initial uipath explainator implementation
Scaffold project with pyproject.toml and environment configuration
Implement core modules including CLI, Gemini integration, and scanner
2026-04-02 10:10:56 +08:00

24 lines
512 B
TOML

[build-system]
requires = ["setuptools>=68"]
build-backend = "setuptools.build_meta"
[project]
name = "uipath-explainator"
version = "0.1.0"
description = "Extract, prune, and explain UiPath workflow dependencies with Gemini."
readme = "README.md"
requires-python = ">=3.12"
dependencies = [
"google-genai>=1.12.1",
"python-dotenv>=1.0.1",
]
[project.scripts]
uipath-explainator = "uipath_explainator.cli:main"
[tool.setuptools]
package-dir = {"" = "src"}
[tool.setuptools.packages.find]
where = ["src"]