Skip to content

Commit

Permalink
feat: add new feature based on task_option 'identity' or 'directory'
Browse files Browse the repository at this point in the history
  • Loading branch information
ImMin5 committed Oct 21, 2024
1 parent e2a58b7 commit f25e15f
Show file tree
Hide file tree
Showing 8 changed files with 286 additions and 210 deletions.
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ RUN pip install --upgrade pip && \
pip install --upgrade -r ${PKG_DIR}/pip_requirements.txt

ARG CACHEBUST=1
RUN pip install --upgrade --pre spaceone-core spaceone-api
RUN pip install --upgrade --pre spaceone-core==1.12.24 spaceone-api==1.12.19

COPY src ${SRC_DIR}
WORKDIR ${SRC_DIR}
Expand Down
14 changes: 7 additions & 7 deletions pkg/pip_requirements.txt
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
spaceone-core
spaceone-api
schematics
requests
boto3
pyarrow
pandas
spaceone-core==1.12.24
spaceone-api==1.12.19
schematics==2.1.1
requests==2.31.0
boto3==1.26.157
pyarrow==12.0.1
pandas==2.0.2

30 changes: 15 additions & 15 deletions src/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,28 +16,28 @@

from setuptools import setup, find_packages

with open('VERSION', 'r') as f:
with open("VERSION", "r") as f:
VERSION = f.read().strip()
f.close()

setup(
name='plugin-aws-hyperbilling-cost-datasource',
name="plugin-aws-hyperbilling-cost-datasource",
version=VERSION,
description='Data source plugin for AWS HyperBilling',
long_description='',
url='https://www.spaceone.dev/',
author='MEGAZONE SpaceONE Team',
author_email='admin@spaceone.dev',
license='Apache License 2.0',
description="Data source plugin for AWS HyperBilling",
long_description="",
url="https://www.spaceone.dev/",
author="MEGAZONE SpaceONE Team",
author_email="admin@spaceone.dev",
license="Apache License 2.0",
packages=find_packages(),
install_requires=[
'spaceone-core',
'spaceone-api',
'schematics',
'requests',
'boto3',
'pyarrow',
'pandas'
"spaceone-core==1.12.24",
"spaceone-api==1.12.19",
"schematics==2.1.1",
"requests==2.31.0",
"boto3==1.26.157",
"pyarrow==12.0.1",
"pandas==2.0.2",
],
zip_safe=False,
)
Loading

0 comments on commit f25e15f

Please sign in to comment.