codemp/dist/py/pyproject.toml
cschen c1c9902b45 feat(python): switched to abi3 mode to allow multiple python versions with single wheel.
abi3 does not support `PyFunction` so added workaround checking for `is_callable()`
2024-09-06 00:24:37 +02:00

33 lines
780 B
TOML

[project]
name = "codemp"
version = "0.0.5"
description = "code multiplexer"
requires-python = ">= 3.8"
license = "GPL-3.0-only"
keywords = ["codemp", "cooperative", "rust", "python"]
authors = [
{ name = "cschen", email = "cschen@codemp.dev" },
{ name = "alemi", email = "me@alemi.dev" },
{ name = "zaaarf", email = "me@zaaarf.foo" },
{ name = "frelodev", email = "frelodev@gmail.com" },
]
maintainers = [
{ name = "cschen", email = "cschen@codemp.dev" },
]
classifiers = [
"Programming Language :: Python"
]
dependencies = []
[project.urls]
repository = "https://github.com/hexedtech/codemp.git"
[build-system]
requires = ["maturin>=1.0,<2.0"]
build-backend = "maturin"
[tool.maturin]
features = ["python", "pyo3/extension-module"]
manifest-path = "../../Cargo.toml"