tictoc/pyproject.toml

24 lines
634 B
TOML

[build-system]
requires = ["maturin>=1.3,<2.0"]
build-backend = "maturin"
[project]
name = "tictoc"
authors = [
{name = "Andrew Conlin", email = "andrew@andrewconl.in"},
]
description = "Fast, simple and accurate Python timing. Written in Rust."
readme = "README.md"
license = {file = "LICENSE.md"}
requires-python = ">=3.8"
classifiers = [
"Programming Language :: Rust",
"Programming Language :: Python :: Implementation :: CPython",
"Programming Language :: Python :: Implementation :: PyPy",
"License :: OSI Approved :: MIT License",
]
dynamic = ["version"]
[tool.maturin]
features = ["pyo3/extension-module"]