2025-12-17 16:03:20 +01:00
|
|
|
[build-system]
|
|
|
|
|
requires = ["hatchling>=1.0.0", "wheel"]
|
|
|
|
|
build-backend = "hatchling.build"
|
|
|
|
|
|
|
|
|
|
[project]
|
|
|
|
|
name = "nomyo"
|
2026-02-03 18:40:51 +01:00
|
|
|
version = "0.1.1"
|
2025-12-17 16:03:20 +01:00
|
|
|
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 :: 4 - Beta",
|
|
|
|
|
"Intended Audience :: Developers",
|
|
|
|
|
"Intended Audience :: Information Technology",
|
|
|
|
|
"License :: OSI Approved :: Apache Software License",
|
|
|
|
|
"Programming Language :: Python :: 3",
|
|
|
|
|
"Programming Language :: Python :: 3.8",
|
|
|
|
|
"Programming Language :: Python :: 3.9",
|
|
|
|
|
"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.8"
|
|
|
|
|
dependencies = [
|
|
|
|
|
"anyio==4.12.0",
|
|
|
|
|
"certifi==2025.11.12",
|
|
|
|
|
"cffi==2.0.0",
|
2026-03-29 02:16:20 +00:00
|
|
|
"cryptography==46.0.6",
|
2025-12-17 16:03:20 +01:00
|
|
|
"exceptiongroup==1.3.1",
|
|
|
|
|
"h11==0.16.0",
|
|
|
|
|
"httpcore==1.0.9",
|
|
|
|
|
"httpx==0.28.1",
|
|
|
|
|
"idna==3.11",
|
|
|
|
|
"pycparser==2.23",
|
|
|
|
|
"typing_extensions==4.15.0",
|
|
|
|
|
]
|
|
|
|
|
|
|
|
|
|
[project.urls]
|
2026-04-03 12:11:05 +02:00
|
|
|
Homepage = "https://www.nomyo.ai"
|
|
|
|
|
Documentation = "https://bitfreedom.net/code/nomyo-ai/nomyo/src/branch/main/doc"
|
|
|
|
|
Repository = "https://bitfreedom.net/code/nomyo-ai/nomyo"
|
|
|
|
|
Issues = "https://bitfreedom.net/code/nomyo-ai/nomyo/issues"
|
2025-12-17 16:03:20 +01:00
|
|
|
|
2026-04-03 12:05:58 +02:00
|
|
|
[tool.hatch.build.targets.wheel]
|
2025-12-17 16:03:20 +01:00
|
|
|
packages = ["nomyo"]
|
2026-04-03 12:17:13 +02:00
|
|
|
|
|
|
|
|
[tool.hatch.build.targets.sdist]
|
|
|
|
|
exclude = ["test/", "build.sh", "dist/"]
|