Skip to content

Commit a60054a

Browse files
authored
Merge pull request #6 from Sooyoung98/master
Changed parts of code related to Docker and Release
2 parents 4ac0731 + fe03e64 commit a60054a

File tree

3 files changed

+15
-20
lines changed

3 files changed

+15
-20
lines changed

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 CLOUDONE_PORT 50051

pkg/pip_requirements.txt

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,3 @@
1-
spaceone-core
2-
spaceone-api
3-
spaceone-tester
41
schematics
52
adal
63
msrestazure

src/setup.py

Lines changed: 14 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -16,29 +16,27 @@
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-azure-activity-log-mon-datasource',
24+
name="plugin-azure-activity-log-mon-datasource",
2525
version=VERSION,
26-
description='MS Azure Activity Log monitoring datasource',
27-
long_description='',
28-
url='https://www.spaceone.dev/',
29-
author='MEGAZONE SpaceONE Team',
30-
author_email='admin@spaceone.dev',
31-
license='Apache License 2.0',
26+
description="MS Azure Activity Log monitoring datasource",
27+
long_description="",
28+
url="https://www.spaceone.dev/",
29+
author="MEGAZONE SpaceONE Team",
30+
author_email="admin@spaceone.dev",
31+
license="Apache License 2.0",
3232
packages=find_packages(),
3333
install_requires=[
34-
'spaceone-core',
35-
'spaceone-api',
36-
'spaceone-tester',
37-
'schematics',
38-
'adal',
39-
'msrestazure',
40-
'azure-identity',
41-
'azure-mgmt-monitor',
34+
"spaceone-api",
35+
"schematics",
36+
"adal",
37+
"msrestazure",
38+
"azure-identity",
39+
"azure-mgmt-monitor",
4240
],
4341
zip_safe=False,
4442
)

0 commit comments

Comments
 (0)