F7_recording/packaging/nextcloud-talk-recording/setup.py
F7cloud 0b94d1826e Initial commit: F7cloud Talk Recording Server
- Переименовано Nextcloud на F7cloud
- Добавлены зависимости Firefox ESR и Geckodriver
- Создан скрипт установки с поддержкой параметров HPB
- Добавлена документация и инструкции по установке

Co-authored-by: Cursor <cursoragent@cursor.com>
2026-02-17 12:18:51 +00:00

19 lines
837 B
Python

#
# SPDX-FileCopyrightText: 2023 Nextcloud GmbH and Nextcloud contributors
# SPDX-License-Identifier: AGPL-3.0-or-later
#
# Dummy setup.py file to be used by stdeb; setuptools >= 61.0 must be used to
# get the proper configuration from the pyproject.toml file.
from setuptools import setup
setup(
# pyproject.toml uses different keywords that are not properly converted to
# the old ones, so they need to be explicitly set here to be used by stdeb.
# "author" can not be set without "author_email". Moreover, if the email was
# also set in pyproject.toml it could not be set here either, as due to how
# the parameters are internally handled by stdeb it would end mixing the
# author set here with the author and email set in pyproject.toml.
url = "https://github.com/nextcloud/nextcloud-talk-recording",
)