mirror of
https://github.com/hexedtech/codemp.git
synced 2024-11-22 23:34:49 +01:00
30 lines
629 B
TOML
30 lines
629 B
TOML
[project]
|
|
name = "codemp"
|
|
version = "0.7.0"
|
|
description = "Cooperative multi-player coding"
|
|
requires-python = ">=3.8"
|
|
license = {file = "../../LICENSE"}
|
|
keywords = ["codemp", "ffi", "rust", "python"]
|
|
authors = [
|
|
{email = "cschen@codemp.dev"}
|
|
]
|
|
maintainers = [
|
|
{name = "Camillo Schenone", email = "cschen@codemp.dev"}
|
|
]
|
|
classifiers = [
|
|
"Programming Language :: Python"
|
|
]
|
|
|
|
dependencies = []
|
|
|
|
[project.urls]
|
|
repository = "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"
|
|
|