From 165f246532ac66bd271481b5ed27676412765637 Mon Sep 17 00:00:00 2001 From: ImMin5 Date: Sat, 23 Dec 2023 17:08:42 +0900 Subject: [PATCH] build: add spaceone-core at setup.py --- src/setup.py | 25 +++++++++++++------------ 1 file changed, 13 insertions(+), 12 deletions(-) diff --git a/src/setup.py b/src/setup.py index 84a9d21..1bab8c3 100644 --- a/src/setup.py +++ b/src/setup.py @@ -17,20 +17,21 @@ from setuptools import setup, find_packages setup( - name='spaceone-supervisor', - version=os.environ.get('PACKAGE_VERSION'), - description='SpaceONE supervisor service', - long_description='', - url='https://www.spaceone.dev/', - author='MEGAZONE SpaceONE Team', - author_email='admin@spaceone.dev', - license='Apache Software License', + name="spaceone-supervisor", + version=os.environ.get("PACKAGE_VERSION"), + description="SpaceONE supervisor service", + long_description="", + url="https://www.spaceone.dev/", + author="MEGAZONE SpaceONE Team", + author_email="admin@spaceone.dev", + license="Apache Software License", packages=find_packages(), install_requires=[ - 'spaceone-api', - 'docker', - 'kubernetes', - 'hashids' + "spaceone-core", + "spaceone-api", + "docker", + "kubernetes", + "hashids", ], zip_safe=False, )