Merge pull request #1386 from jooola/feat/enhance_setup.py_deps

Add missing local api_client dependency
This commit is contained in:
Kyle Robbertze 2021-10-12 07:09:42 +00:00 committed by GitHub
commit 0450ca7aad
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 5 additions and 2 deletions

View File

@ -1,9 +1,11 @@
import os
from os import chdir
from pathlib import Path
from setuptools import setup
# Change directory since setuptools uses relative paths
os.chdir(os.path.dirname(os.path.realpath(__file__)))
here = Path(__file__).parent
chdir(here)
setup(
name="airtime-playout",
@ -29,6 +31,7 @@ setup(
],
python_requires=">=3.6",
install_requires=[
f"api_clients @ file://localhost/{here.parent}/api_clients#egg=api_clients",
"amqplib",
"configobj",
"defusedxml",