mirror of
https://github.com/trustgraph-ai/trustgraph.git
synced 2026-07-03 06:51:00 +02:00
Squashed 'ai-context/trustgraph-templates/' content from commit 42a5fd1b
git-subtree-dir: ai-context/trustgraph-templates git-subtree-split: 42a5fd1b678f32be378062e30451e2052ccb95dd
This commit is contained in:
commit
74cc8a4685
1216 changed files with 116347 additions and 0 deletions
68
pyproject.toml
Normal file
68
pyproject.toml
Normal file
|
|
@ -0,0 +1,68 @@
|
|||
[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",
|
||||
]
|
||||
|
||||
Loading…
Add table
Add a link
Reference in a new issue