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>
6 lines
108 B
Python
6 lines
108 B
Python
# -*- coding: utf-8 -*-
|
|
from setuptools import setup
|
|
|
|
setup(
|
|
cffi_modules=["olm_build.py:ffibuilder"]
|
|
)
|