trustgraph/pyproject.toml
elpresidank 74cc8a4685 Squashed 'ai-context/trustgraph-templates/' content from commit 42a5fd1b
git-subtree-dir: ai-context/trustgraph-templates
git-subtree-split: 42a5fd1b678f32be378062e30451e2052ccb95dd
2026-04-05 21:09:49 -05:00

68 lines
1.6 KiB
TOML

[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"
[project]
name = "trustgraph-configurator"
dynamic = ["version"]
authors = [
{name = "trustgraph.ai", email = "security@trustgraph.ai"},
]
description = "Configuration creator for trustgraph.ai"
readme = "README.md"
requires-python = ">=3.8"
license = {text = "Apache-2.0"}
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: Apache Software License",
"Operating System :: OS Independent",
]
dependencies = [
"aiohttp",
"gojsonnet",
"pyyaml",
"tabulate",
]
[project.optional-dependencies]
dev = [
"pytest>=7.0",
"pytest-xdist>=3.0",
"pytest-cov>=4.0",
"jsonschema>=4.0",
]
[project.urls]
Homepage = "https://github.com/trustgraph-ai/trustgraph-configurator"
[project.scripts]
tg-build-deployment = "trustgraph_configurator:run"
tg-config-svc = "trustgraph_configurator:run_service"
tg-show-config-params = "trustgraph_configurator:list"
[tool.setuptools.packages.find]
include = ["trustgraph_configurator*"]
[tool.setuptools.package-data]
trustgraph_configurator = ["templates/**", "resources/**"]
[tool.setuptools.dynamic]
version = {attr = "trustgraph_configurator.__version__"}
[tool.pytest.ini_options]
testpaths = ["tests"]
python_files = ["test_*.py"]
python_classes = ["Test*"]
python_functions = ["test_*"]
addopts = [
"-v",
"--strict-markers",
"--tb=short",
]
markers = [
"unit: Unit tests",
"integration: Integration tests",
"validation: Output validation tests",
"slow: Slow-running tests",
]