Skip to content

Commit 8b42fee

Browse files
committed
fix: modified parts of code related to docker and versioning
1 parent 6284982 commit 8b42fee

3 files changed

Lines changed: 10 additions & 17 deletions

File tree

Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM python:3.8-slim
1+
FROM cloudforet/python-core:1
22

33
ENV PYTHONUNBUFFERED 1
44
ENV SPACEONE_PORT 50051

pkg/pip_requirements.txt

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,2 @@
1-
spaceone-core
2-
spaceone-api
31
google-api-python-client
42
schematics

src/setup.py

Lines changed: 9 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -16,25 +16,20 @@
1616

1717
from setuptools import setup, find_packages
1818

19-
with open('VERSION', 'r') as f:
19+
with open("VERSION", "r") as f:
2020
VERSION = f.read().strip()
2121
f.close()
2222

2323
setup(
24-
name='plugin-google-cloud-logging',
24+
name="plugin-google-cloud-logging",
2525
version=VERSION,
26-
description='Google cloud logging collector',
27-
long_description='',
28-
url='https://www.cloudforet-io.com/',
29-
author='MEGAZONE SpaceONE Team',
30-
author_email='admin@spaceone.dev',
31-
license='Apache License 2.0',
26+
description="Google cloud logging collector",
27+
long_description="",
28+
url="https://www.cloudforet-io.com/",
29+
author="MEGAZONE SpaceONE Team",
30+
author_email="admin@spaceone.dev",
31+
license="Apache License 2.0",
3232
packages=find_packages(),
33-
install_requires=[
34-
'spaceone-core',
35-
'spaceone-api',
36-
'google-api-python-client',
37-
'schematics'
38-
],
33+
install_requires=["spaceone-api", "google-api-python-client", "schematics"],
3934
zip_safe=False,
4035
)

0 commit comments

Comments
 (0)