Pyteryx/pyproject.toml

35 lines
713 B
TOML

[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "alteryx-runner"
version = "0.1.0"
requires-python = ">=3.11"
description = "Python-native runner for Alteryx .yxmd workflow files"
license = { text = "Apache-2.0" }
dependencies = [
"polars>=0.20",
"duckdb>=0.10",
"pyarrow>=14",
"yxdb>=0.1",
"openpyxl>=3.1",
"lark>=1.1",
"click>=8.0",
"pytest>=9.0.3",
"pandas>=3.0.3",
]
[project.optional-dependencies]
dev = ["pytest", "pytest-cov", "ruff", "mypy"]
[project.scripts]
alteryx-runner = "alteryx_runner.cli:main"
[tool.hatch.build.targets.wheel]
packages = ["alteryx_runner"]
[tool.ruff]
line-length = 100
target-version = "py311"