add readme, NOAI clause, pyproject, change api for consistency

This commit is contained in:
2025-03-03 11:25:46 +05:30
parent 3c626e42b6
commit c41b302313
5 changed files with 82 additions and 6 deletions

16
pyproject.toml Normal file
View File

@@ -0,0 +1,16 @@
[build-system]
requires = ["setuptools>=42", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "harmoney"
version = "0.1.0"
description = "Simple Remote Function Calling Framework"
authors = [{name = "Phani Pavan K", email = "kphanipavan@gmail.com"}]
license = {text = "AGPLv3"}
readme = "README.md"
requires-python = ">=3.8"
dependencies = ["websockets>=15.0", "uvicorn>=0.34.0", "fastapi>=0.115.8", "pydantic>=2.10.6", "requests>=2.31.0"]
[project.urls]
Homepage = "https://git.pvnweb.dedyn.io/phanipavank/harmoney"