started python side

This commit is contained in:
John Lancaster
2025-09-12 18:39:17 -05:00
parent 09582a2efb
commit 470b68cc1a
9 changed files with 173 additions and 3 deletions

26
pyproject.toml Normal file
View File

@@ -0,0 +1,26 @@
[project]
name = "pyo3-server"
version = "0.1.0"
description = "Add your description here"
readme = "README.md"
authors = [
{ name = "John Lancaster", email = "32917998+jsl12@users.noreply.github.com" },
]
requires-python = ">=3.12"
dependencies = []
classifiers = [
"Programming Language :: Rust",
"Programming Language :: Python :: Implementation :: CPython",
"Programming Language :: Python :: Implementation :: PyPy",
]
[project.scripts]
pyo3-server = "pyo3_server:main"
# [build-system]
# requires = ["uv_build>=0.8.2,<0.9.0"]
# build-backend = "uv_build"
[build-system]
requires = ["maturin>=1,<2"]
build-backend = "maturin"