Rename python apps

BREAKING: Remove old packages using
sudo pip uninstall \
  airtime-playout \
  airtime-celery \
  api_clients

Fix libretime-api-client import for playout
This commit is contained in:
jo 2021-10-03 14:57:45 +02:00
parent 6081dc161b
commit bde2f2d494
3 changed files with 4 additions and 4 deletions

View File

@ -6,7 +6,7 @@ from setuptools import setup
os.chdir(os.path.dirname(os.path.realpath(__file__))) os.chdir(os.path.dirname(os.path.realpath(__file__)))
setup( setup(
name="airtime-celery", name="libretime-celery",
version="0.1", version="0.1",
description="LibreTime Celery", description="LibreTime Celery",
author="LibreTime Contributors", author="LibreTime Contributors",

View File

@ -6,7 +6,7 @@ from setuptools import setup
os.chdir(os.path.dirname(os.path.realpath(__file__))) os.chdir(os.path.dirname(os.path.realpath(__file__)))
setup( setup(
name="api_clients", name="libretime-api-client",
version="2.0.0", version="2.0.0",
description="LibreTime API Client", description="LibreTime API Client",
author="LibreTime Contributors", author="LibreTime Contributors",

View File

@ -8,7 +8,7 @@ here = Path(__file__).parent
chdir(here) chdir(here)
setup( setup(
name="airtime-playout", name="libretime-playout",
version="1.0", version="1.0",
description="LibreTime Playout", description="LibreTime Playout",
author="LibreTime Contributors", author="LibreTime Contributors",
@ -31,7 +31,7 @@ setup(
], ],
python_requires=">=3.6", python_requires=">=3.6",
install_requires=[ install_requires=[
f"api_clients @ file://localhost/{here.parent}/api_clients#egg=api_clients", f"libretime-api-client @ file://localhost/{here.parent}/api_clients#egg=libretime-api-client",
"amqplib", "amqplib",
"configobj", "configobj",
"defusedxml", "defusedxml",