Merge pull request #1386 from jooola/feat/enhance_setup.py_deps
Add missing local api_client dependency
This commit is contained in:
commit
0450ca7aad
|
@ -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",
|
||||
|
|
Loading…
Reference in New Issue