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:
parent
6081dc161b
commit
bde2f2d494
|
@ -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",
|
||||||
|
|
|
@ -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",
|
||||||
|
|
|
@ -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",
|
||||||
|
|
Loading…
Reference in New Issue