comparison setup.py @ 489:fa0d2a4783fa default tip

install: use PEP-440 compatible version in `setup`: setuptools from version v66 doesn't accept anymore non PEP-440 compatible version. This is a Q&D fix, move to `pyproject.toml` with proper versioning as for Libervia backend should be done sooner than later.
author Goffi <goffi@goffi.org>
date Fri, 12 Jan 2024 23:46:24 +0100
parents 9125a6e440c0
children
comparison
equal deleted inserted replaced
488:c41f37f1b51c 489:fa0d2a4783fa
51 'local_scheme': local_scheme} 51 'local_scheme': local_scheme}
52 52
53 53
54 setup( 54 setup(
55 name=NAME, 55 name=NAME,
56 version=VERSION, 56 version=VERSION.replace('D', '.dev0'),
57 description="XMPP Publish-Subscribe Service Component, build for the need of " 57 description="XMPP Publish-Subscribe Service Component, build for the need of "
58 "the « Salut à Toi » project", 58 "the « Salut à Toi » project",
59 author="Association « Salut à Toi »", 59 author="Association « Salut à Toi »",
60 author_email="goffi@goffi.org", 60 author_email="goffi@goffi.org",
61 url="https://salut-a-toi.org", 61 url="https://salut-a-toi.org",