2025-07-23 21:22:08 +01:00
|
|
|
[build-system]
|
|
|
|
|
requires = ["setuptools>=61.0", "wheel"]
|
|
|
|
|
build-backend = "setuptools.build_meta"
|
|
|
|
|
|
|
|
|
|
[project]
|
|
|
|
|
name = "trustgraph-base"
|
|
|
|
|
dynamic = ["version"]
|
|
|
|
|
authors = [{name = "trustgraph.ai", email = "security@trustgraph.ai"}]
|
|
|
|
|
description = "TrustGraph provides a means to run a pipeline of flexible AI processing components in a flexible means to achieve a processing pipeline."
|
|
|
|
|
readme = "README.md"
|
|
|
|
|
requires-python = ">=3.8"
|
|
|
|
|
dependencies = [
|
|
|
|
|
"pulsar-client",
|
|
|
|
|
"prometheus-client",
|
2025-09-25 19:11:40 +01:00
|
|
|
"requests",
|
2025-12-09 23:24:41 +00:00
|
|
|
"python-logging-loki",
|
2026-04-02 12:47:16 +01:00
|
|
|
"pika",
|
2025-07-23 21:22:08 +01:00
|
|
|
]
|
|
|
|
|
classifiers = [
|
|
|
|
|
"Programming Language :: Python :: 3",
|
|
|
|
|
"Operating System :: OS Independent",
|
|
|
|
|
]
|
|
|
|
|
|
|
|
|
|
[project.urls]
|
|
|
|
|
Homepage = "https://github.com/trustgraph-ai/trustgraph"
|
|
|
|
|
|
|
|
|
|
[tool.setuptools.packages.find]
|
|
|
|
|
include = ["trustgraph*"]
|
|
|
|
|
|
Feat: TrustGraph i18n & Documentation Translation Updates (#781)
Native CLI i18n: The TrustGraph CLI has built-in translation support
that dynamically loads language strings. You can test and use
different languages by simply passing the --lang flag (e.g., --lang
es for Spanish, --lang ru for Russian) or by configuring your
environment's LANG variable.
Automated Docs Translations: This PR introduces autonomously
translated Markdown documentation into several target languages,
including Spanish, Swahili, Portuguese, Turkish, Hindi, Hebrew,
Arabic, Simplified Chinese, and Russian.
2026-04-14 07:07:58 -04:00
|
|
|
[tool.setuptools.package-data]
|
|
|
|
|
"trustgraph.i18n.packs" = ["*.json"]
|
|
|
|
|
|
2025-07-23 21:22:08 +01:00
|
|
|
[tool.setuptools.dynamic]
|
|
|
|
|
version = {attr = "trustgraph.base_version.__version__"}
|