Skip to content

Commit

Permalink
Merge pull request #4 from Sooyoung98/master
Browse files Browse the repository at this point in the history
Changed parts of code related to Docker and Release
  • Loading branch information
Sooyoung98 authored Jan 6, 2024
2 parents a46a2c0 + 8dd7b6c commit 24203d9
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 19 deletions.
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM python:3.8-slim
FROM cloudforet/python-core:1

ENV PYTHONUNBUFFERED 1
ENV SPACEONE_PORT 50051
Expand Down
2 changes: 0 additions & 2 deletions pkg/pip_requirements.txt
Original file line number Diff line number Diff line change
@@ -1,6 +1,4 @@
cachetools<5.0
spaceone-core
spaceone-api
schematics
requests
pandas
Expand Down
25 changes: 9 additions & 16 deletions src/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,27 +16,20 @@

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-sse-cost-datasource',
name="plugin-sse-cost-datasource",
version=VERSION,
description='Data source plugin for SSE',
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 SSE",
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',
'pandas',
'numpy'
],
install_requires=["spaceone-api", "schematics", "requests", "pandas", "numpy"],
zip_safe=False,
)

0 comments on commit 24203d9

Please sign in to comment.