88 lines
2.3 KiB
TOML
88 lines
2.3 KiB
TOML
# anytraverser (c) by chacha
|
|
#
|
|
# anytraverser is licensed under a
|
|
# PolyForm Noncommercial License 1.0.0
|
|
#
|
|
# You should have received a copy of the license along with this
|
|
# work. If not, see <https://polyformproject.org/licenses/noncommercial/1.0.0>.
|
|
|
|
[build-system]
|
|
requires = ["setuptools>=63", "wheel", "setuptools_scm"]
|
|
build-backend = "setuptools.build_meta"
|
|
|
|
[tool.setuptools_scm]
|
|
version_scheme= "post-release"
|
|
|
|
[project]
|
|
name = "anytraverser"
|
|
description = "Stream either Data or Annotations; hook into each step with Triggers to validate, transform, and build objects."
|
|
readme = "README.md"
|
|
requires-python = ">=3.11"
|
|
keywords = ["chacha","anytraverser"]
|
|
license = { file = "LICENSE.md" }
|
|
|
|
authors = [
|
|
{name="chacha",email="1000CHACHA0001@gmail.com"},
|
|
]
|
|
maintainers = [
|
|
{name="chacha",email="1000CHACHA0001@gmail.com"},
|
|
]
|
|
classifiers = [
|
|
"Development Status :: 4 - Beta",
|
|
"Programming Language :: Python :: 3 :: Only",
|
|
"Programming Language :: Python :: 3.11",
|
|
"License :: PolyForm-Noncommercial-1.0.0",
|
|
]
|
|
dependencies = [
|
|
'importlib-metadata; python_version<"3.9"',
|
|
'packaging'
|
|
]
|
|
dynamic = ["version"]
|
|
|
|
[tool.setuptools]
|
|
platforms = ["any"]
|
|
include-package-data = true
|
|
|
|
[tool.setuptools.packages.find]
|
|
where = ["src"]
|
|
|
|
[tool.setuptools.package-data]
|
|
"anytraverser.data" = ["*.*"]
|
|
"anytraverser" = ["py.typed"]
|
|
|
|
# [[tool.mypy.overrides]]
|
|
# module = ""
|
|
# ignore_missing_imports = true
|
|
|
|
[tool.coverage.run]
|
|
cover_pylib = false
|
|
branch = true
|
|
data_file="helpers-results/cl_unit_test_raw_coverage/.coverage"
|
|
# debug = ["config","multiproc","process"]
|
|
parallel = true
|
|
concurrency = [
|
|
'thread'
|
|
]
|
|
|
|
[tool.coverage.report]
|
|
exclude_also = [
|
|
"if TYPE_CHECKING:",
|
|
]
|
|
|
|
[project.urls]
|
|
Homepage = "https://chacha.ddns.net/gitea/chacha/anytraverser"
|
|
Documentation = "https://chacha.ddns.net/mkdocs-web/chacha/anytraverser/master/latest/"
|
|
Tracker = "https://chacha.ddns.net/gitea/chacha/anytraverser/issues"
|
|
|
|
[project.optional-dependencies]
|
|
test = ["chacha_cicd_helper"]
|
|
coverage-check = ["chacha_cicd_helper"]
|
|
complexity-check = ["chacha_cicd_helper"]
|
|
quality-check = ["chacha_cicd_helper"]
|
|
type-check = ["chacha_cicd_helper"]
|
|
doc-gen = ["chacha_cicd_helper"]
|
|
|
|
# [project.scripts]
|
|
# my-script = "my_package.module:function"
|
|
|