28 lines
792 B
TOML
28 lines
792 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"]
|
|
|
|
[project.urls]
|
|
Repository = "https://git.andrewconl.in/andrew/tictoc.git"
|
|
Changelog = "https://git.andrewconl.in/andrew/tictoc/src/branch/main/CHANGELOG.md"
|
|
|
|
[tool.maturin]
|
|
features = ["pyo3/extension-module"]
|