Mercurial > libervia-web
changeset 1442:a06a5b510e2e
/!\ package is being renamed to libervia-web following global name change /!\
author | Goffi <goffi@goffi.org> |
---|---|
date | Fri, 18 Jun 2021 16:21:18 +0200 |
parents | c34e973587bd |
children | 3821168b9459 |
files | setup.py |
diffstat | 1 files changed, 7 insertions(+), 5 deletions(-) [+] |
line wrap: on
line diff
--- a/setup.py Fri Jun 18 16:21:00 2021 +0200 +++ b/setup.py Fri Jun 18 16:21:18 2021 +0200 @@ -1,6 +1,6 @@ #!/usr/bin/env python3 -# Libervia: a Salut à Toi frontend +# Libervia Web Frontend # Copyright (C) 2011-2021 Jérôme Poisson (goffi@goffi.org) # Copyright (C) 2013-2016 Adrien Cossa (souliane@mailoo.org) @@ -20,7 +20,9 @@ from setuptools import setup import os -NAME = "libervia" +NAME = "libervia-web" +# NOTE: directory is still "libervia" for compatibility reason, should be changed for 0.9 +DIR_NAME = "libervia" install_requires = [ "libervia-backend >=0.8.0b1, <0.9.0", @@ -34,12 +36,12 @@ "brython >=3.9.2, <3.10", ] long_description = """\ -Libervia is a web frontend for Salut à Toi (SàT), a multi-frontends and multi-purposes XMPP client. +Web frontend for Libervia (formerly Salut à Toi), a multi-frontends and multi-purposes XMPP client. It features chat, blog, forums, events, tickets, merge requests, file sharing, photo albums, etc. It is also a decentralized, XMPP based web framework. """ -with open(os.path.join(NAME, "VERSION")) as v: +with open(os.path.join(DIR_NAME, "VERSION")) as v: VERSION = v.read().strip() is_dev_version = VERSION.endswith("D") @@ -59,7 +61,7 @@ setup( name=NAME, version=VERSION, - description="Web frontend for Salut à Toi", + description="Web frontend for Libervia", long_description=long_description, author="Association « Salut à Toi »", author_email="contact@goffi.org",