59 lines
1.9 KiB
TOML
59 lines
1.9 KiB
TOML
[build-system]
|
|
requires = ["hatchling>=1.0.0", "wheel"]
|
|
build-backend = "hatchling.build"
|
|
|
|
[project]
|
|
name = "nomyo"
|
|
version = "0.3.0"
|
|
description = "OpenAI-compatible secure chat client with end-to-end encryption for NOMYO Inference Endpoints"
|
|
authors = [
|
|
{name = "NOMYO.AI", email = "ichi@nomyo.ai"},
|
|
]
|
|
readme = "README.md"
|
|
license = {text = "Apache-2.0"}
|
|
classifiers = [
|
|
"Development Status :: 5 - Production/Stable",
|
|
"Intended Audience :: Developers",
|
|
"Intended Audience :: Information Technology",
|
|
"License :: OSI Approved :: Apache Software License",
|
|
"Programming Language :: Python :: 3",
|
|
"Programming Language :: Python :: 3.10",
|
|
"Programming Language :: Python :: 3.11",
|
|
"Programming Language :: Python :: 3.12",
|
|
"Topic :: Security :: Cryptography",
|
|
"Topic :: Software Development :: Libraries :: Python Modules",
|
|
"Topic :: Communications :: Chat",
|
|
"Operating System :: OS Independent",
|
|
]
|
|
requires-python = ">=3.10"
|
|
dependencies = [
|
|
"anyio==4.14.0",
|
|
"certifi==2026.5.20",
|
|
"cffi==2.0.0",
|
|
"cryptography==49.0.0",
|
|
"exceptiongroup==1.3.1",
|
|
"h11==0.16.0",
|
|
"httpcore==1.0.9",
|
|
"httpx==0.28.1",
|
|
"idna==3.18",
|
|
"pycparser==3.0",
|
|
"typing_extensions==4.15.0",
|
|
]
|
|
|
|
[project.optional-dependencies]
|
|
# SGX attestation via a remote JWT-returning verification service (Intel Trust
|
|
# Authority / Veraison / self-hosted QVL wrapper). cryptography (core dep) covers
|
|
# the JWKS RSA/EC signature validation; pyjwt provides JWT + JWKS handling.
|
|
attestation = ["pyjwt>=2.8,<3"]
|
|
|
|
[project.urls]
|
|
Homepage = "https://www.nomyo.ai"
|
|
Documentation = "https://bitfreedom.net/code/nomyo-ai/nomyo/wiki/NOMYO-Secure-Client-Documentation"
|
|
Repository = "https://bitfreedom.net/code/nomyo-ai/nomyo"
|
|
Issues = "https://bitfreedom.net/code/nomyo-ai/nomyo/issues"
|
|
|
|
[tool.hatch.build.targets.wheel]
|
|
packages = ["nomyo"]
|
|
|
|
[tool.hatch.build.targets.sdist]
|
|
exclude = ["test/", "build.sh", "dist/"]
|