1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74
|
[build-system]
requires = ["setuptools >= 77.0.3"]
build-backend = "setuptools.build_meta"
[project]
name = "librt"
description = "Mypyc runtime library"
readme = {text = """
Mypyc runtime library
=====================
This library contains efficient C implementations of various Python standard
library classes and functions. Mypyc can use these fast implementations when
compiling Python code to native extension modules.
Mypyc compiler is a part of `mypy distribution <https://pypi.org/project/mypy>`__.
""", content-type = "text/x-rst"}
authors = [
{name = "Jukka Lehtosalo", email = "jukka.lehtosalo@iki.fi"},
{name = "Ivan Levkivskyi", email = "levkivskyi@gmail.com"},
]
version = "0.6.1"
license = {text = "MIT"}
classifiers = [
"Development Status :: 3 - Alpha",
"Environment :: Console",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: 3.14",
"Topic :: Software Development",
"Typing :: Typed",
]
requires-python = ">=3.9"
[project.urls]
Homepage = "https://github.com/mypyc/librt"
Issues = "https://github.com/mypyc/mypyc/issues"
[tool.cibuildwheel]
build-frontend = "build"
linux.manylinux-x86_64-image = "manylinux_2_28"
linux.manylinux-aarch64-image = "manylinux_2_28"
linux.musllinux-x86_64-image = "musllinux_1_2"
linux.musllinux-aarch64-image = "musllinux_1_2"
build-verbosity = 1
linux.before-all = [
"yum install -y llvm-toolset || yum -v install -y llvm-toolset",
]
before-test = [
"pip install pytest mypy_extensions",
]
test-sources = [
"smoke_tests.py",
]
test-command = "pytest smoke_tests.py"
[tool.cibuildwheel.linux.environment]
CC="clang"
[[tool.cibuildwheel.overrides]]
select = "*musllinux*"
before-all = [
"apk add --no-cache clang",
]
|