bbdac4045d
Hello, Setuptools 69.0.0 deprecated a bunch stuff leading to a nasty errors during install. > File "/tmp/pip-build-env-w815o5v3/overlay/lib/python3.11/site-packages/setuptools/config/_apply_pyprojecttoml.py", line 183, in _license > _set_config(dist, "license", val["text"]) > ~~~^^^^^^^^ > KeyError: 'text' > [end of output] __version__.py wasn't used anywhere except setup.py so removing and setting it all pyproject.toml is safe. During this decided to move as much as I could out of setup.py, zip-safe has been obsolete for modern setuptools installation methods so dropped it. From c0be008217350f03de7f856866a402d95b5db2a3 Mon Sep 17 00:00:00 2001 From: Alfred Wingate <parona@protonmail.com> Date: Tue, 21 Nov 2023 15:13:35 +0200 Subject: [PATCH] Move metadata to project.toml * Setuptools 69.0.0 deprecated a slew of old style configurations. Signed-off-by: Alfred Wingate <parona@protonmail.com>
22 lines
616 B
TOML
22 lines
616 B
TOML
[build-system]
|
|
requires = ["setuptools", "cffi>=1.0.0"]
|
|
build-backend = "setuptools.build_meta"
|
|
|
|
[project]
|
|
name = "python-olm"
|
|
version = "3.2.15"
|
|
description = "python CFFI bindings for the olm cryptographic ratchet library"
|
|
authors = [{name = "Damir Jelić", email = "poljar@termina.org.uk"}]
|
|
license = {text = "Apache-2.0"}
|
|
readme = "README.md"
|
|
classifiers = [
|
|
"License :: OSI Approved :: Apache Software License",
|
|
"Topic :: Communications",
|
|
]
|
|
dependencies = ["cffi>=1.0.0"]
|
|
|
|
[project.urls]
|
|
homepage = "https://gitlab.matrix.org/matrix-org/olm/-/tree/master/python"
|
|
|
|
[tool.setuptools]
|
|
packages = [ "olm" ]
|