mirror of
https://hub.psychoinformatics.de/actions/xlsx-to-tsv.git
synced 2026-09-10 03:46:04 +00:00
194 lines
5.1 KiB
TOML
194 lines
5.1 KiB
TOML
[build-system]
|
|
requires = [
|
|
"hatchling",
|
|
"hatch-vcs",
|
|
]
|
|
build-backend = "hatchling.build"
|
|
|
|
[project]
|
|
name = "xlsx-to-tsv-action"
|
|
dynamic = ["version"]
|
|
description = 'utilities for working with data in the vicinity of Git and git-annex'
|
|
readme = "README.md"
|
|
requires-python = ">=3.11"
|
|
license = "MIT"
|
|
keywords = [
|
|
"openpxl",
|
|
"xlsx",
|
|
"tsv",
|
|
"forgejo",
|
|
"action",
|
|
]
|
|
authors = [
|
|
{ name = "Michael Hanke", email = "mih@ngln.eu" },
|
|
]
|
|
maintainers = [
|
|
{ name = "Michael Hanke", email = "mih@ngln.eu" },
|
|
]
|
|
classifiers = [
|
|
"License :: OSI Approved :: MIT License",
|
|
"Development Status :: 4 - Beta",
|
|
"Intended Audience :: Developers",
|
|
"Intended Audience :: End Users/Desktop",
|
|
"Natural Language :: English",
|
|
"Operating System :: OS Independent",
|
|
"Topic :: Software Development",
|
|
"Topic :: Software Development :: Version Control",
|
|
"Topic :: Software Development :: Version Control :: Git",
|
|
"Programming Language :: Python",
|
|
"Programming Language :: Python :: 3",
|
|
"Programming Language :: Python :: 3.11",
|
|
"Programming Language :: Python :: 3.11",
|
|
"Programming Language :: Python :: 3.12",
|
|
"Programming Language :: Python :: 3.13",
|
|
"Programming Language :: Python :: 3.14",
|
|
"Programming Language :: Python :: Implementation :: CPython",
|
|
"Programming Language :: Python :: Implementation :: PyPy",
|
|
]
|
|
dependencies = [
|
|
"openpyxl",
|
|
]
|
|
|
|
[project.scripts]
|
|
xlsx-to-tsv = "xlsx_to_tsv.__init__:main"
|
|
|
|
[project.urls]
|
|
Homepage = "https://hub.psychoinformatics.de/actions/xlsx-to-tsv"
|
|
Documentation = "https://hub.psychoinformatics.de/actions/xlsx-to-tsv#readme"
|
|
Issues = "https://hub.psychoinformatics.de/actions/xlsx-to-tsv/issues"
|
|
Source = "https://hub.psychoinformatics.de/actions/xlsx-to-tsv"
|
|
|
|
[tool.hatch.version]
|
|
source = "vcs"
|
|
|
|
[tool.hatch.build.hooks.vcs]
|
|
version-file = "xlsx_to_tsv/_version.py"
|
|
|
|
[tool.hatch.envs.hatch-test]
|
|
default-args = ["xlsx_to_tsv"]
|
|
extra-dependencies = [
|
|
"pytest",
|
|
# if you come here, because coverage combination crashed for you
|
|
# run `hatch test --cover` and/or see
|
|
# https://github.com/pypa/hatch/issues/1565#issuecomment-2163773123
|
|
"pytest-cov",
|
|
]
|
|
|
|
[[tool.hatch.envs.hatch-test.matrix]]
|
|
python = ["3.11", "3.12", "3.13", "3.14"]
|
|
|
|
[tool.hatch.envs.hatch-test.overrides]
|
|
# only run the doc tests on linux (makes it possible to
|
|
# use a familiar set of external commands for examples)
|
|
platform.linux.extra-args = { value = ["--doctest-modules"] }
|
|
|
|
[tool.hatch.envs.types]
|
|
description = "type checking with MyPy"
|
|
extra-dependencies = [
|
|
"mypy>=1.0.0",
|
|
"pytest",
|
|
]
|
|
[tool.hatch.envs.types.scripts]
|
|
check = [
|
|
"mypy --install-types --non-interactive --python-version 3.11 --pretty --show-error-context {args:xlsx_to_tsv}",
|
|
]
|
|
|
|
[tool.hatch.envs.cz]
|
|
description = "commit compliance, changelog, and release generation"
|
|
detached = true
|
|
extra-dependencies = [
|
|
"commitizen",
|
|
]
|
|
[tool.hatch.envs.cz.scripts]
|
|
check-commits = [
|
|
# check all commit messages
|
|
"cz check --rev-range fc6364d7546366b0928c086593f67fdc3db6677a..HEAD",
|
|
]
|
|
show-changelog = [
|
|
# show the would-be changelog on stdout
|
|
"cz changelog --dry-run",
|
|
]
|
|
bump-version = [
|
|
# bump version (also tags) and update changelog
|
|
"cz bump --changelog",
|
|
]
|
|
|
|
[tool.hatch.envs.codespell]
|
|
description = "spell checking"
|
|
detached = true
|
|
extra-dependencies = [
|
|
"codespell",
|
|
]
|
|
[tool.hatch.envs.codespell.scripts]
|
|
check = "codespell"
|
|
fix = "codespell --write-changes"
|
|
|
|
[tool.codespell]
|
|
skip = ".git,build,.*cache,dist,./docs/_build/*"
|
|
#exclude-file = ".codespell-exclude"
|
|
|
|
|
|
[tool.coverage.run]
|
|
source_pkgs = ["xlsx_to_tsv", "tests"]
|
|
branch = true
|
|
parallel = true
|
|
omit = [
|
|
# "src/xlsx_to_tsv/__about__.py",
|
|
]
|
|
data_file = "${COVERAGE_ROOT-.}/.coverage"
|
|
|
|
[tool.coverage.paths]
|
|
xlsx_to_tsv = ["src/xlsx_to_tsv", "*/xlsx_to_tsv/src/xlsx_to_tsv"]
|
|
tests = ["tests", "*/xlsx_to_tsv/tests"]
|
|
|
|
[tool.coverage.report]
|
|
show_missing = true
|
|
exclude_lines = [
|
|
"no cov",
|
|
"if __name__ == .__main__.:",
|
|
"if TYPE_CHECKING:",
|
|
"raise NotImplementedError",
|
|
]
|
|
|
|
[tool.ruff]
|
|
exclude = [
|
|
# sphinx
|
|
"docs",
|
|
]
|
|
line-length = 88
|
|
indent-width = 4
|
|
target-version = "py311"
|
|
[tool.ruff.format]
|
|
# Prefer single quotes over double quotes.
|
|
quote-style = "single"
|
|
[tool.ruff.lint.per-file-ignores]
|
|
"**/test_*" = [
|
|
# permit assert statements in tests
|
|
"S101",
|
|
# permit relative import in tests
|
|
"TID252",
|
|
# permit versatile function names in tests
|
|
"N802",
|
|
]
|
|
|
|
[tool.commitizen]
|
|
name = "cz_customize"
|
|
tag_format = "v$version"
|
|
version_scheme = "pep440"
|
|
version_provider = "scm"
|
|
changelog_incremental = true
|
|
template = ".changelog.md.j2"
|
|
gpg_sign = true
|
|
|
|
[tool.commitizen.customize]
|
|
commit_parser = "^((?P<change_type>feat|fix|rf|perf|test|doc|BREAKING CHANGE)(?:\\((?P<scope>[^()\r\n]*)\\)|\\()?(?P<breaking>!)?|\\w+!):\\s(?P<message>.*)?(?P<body>.*)?"
|
|
change_type_order = ["BREAKING CHANGE", "feat", "fix", "rf", "perf", "doc", "test"]
|
|
changelog_pattern = "^((BREAKING[\\-\\ ]CHANGE|\\w+)(\\(.+\\))?!?):"
|
|
bump_pattern = "^((BREAKING[\\-\\ ]CHANGE|\\w+)(\\(.+\\))?!?):"
|
|
schema_pattern = "(?s)(ci|doc|feat|fix|perf|rf|style|test|chore|revert|bump)(\\(\\S+\\))?!?:( [^\\n\\r]+)((\\n\\n.*)|(\\s*))?$"
|
|
|
|
[tool.commitizen.customize.bump_map]
|
|
"^\\w+!" = "MAJOR"
|
|
"^BREAKING" = "MAJOR"
|
|
"^feat" = "MINOR"
|
|
"^fix" = "PATCH"
|