Skip to content

Commit

Permalink
build: add spaceone-core at setup.py
Browse files Browse the repository at this point in the history
  • Loading branch information
ImMin5 committed Dec 23, 2023
1 parent fc9a92b commit 165f246
Showing 1 changed file with 13 additions and 12 deletions.
25 changes: 13 additions & 12 deletions src/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -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,
)

0 comments on commit 165f246

Please sign in to comment.