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
|
from setuptools import setup
|
||||||
|
|
||||||
# Change directory since setuptools uses relative paths
|
# Change directory since setuptools uses relative paths
|
||||||
os.chdir(os.path.dirname(os.path.realpath(__file__)))
|
here = Path(__file__).parent
|
||||||
|
chdir(here)
|
||||||
|
|
||||||
setup(
|
setup(
|
||||||
name="airtime-playout",
|
name="airtime-playout",
|
||||||
|
@ -29,6 +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",
|
||||||
"amqplib",
|
"amqplib",
|
||||||
"configobj",
|
"configobj",
|
||||||
"defusedxml",
|
"defusedxml",
|
||||||
|
|
Loading…
Reference in New Issue