Skip to content

Commit

Permalink
fix: modified parts of code related to docker and versioning
Browse files Browse the repository at this point in the history
  • Loading branch information
Sooyoung98 committed Jan 6, 2024
1 parent c8908ae commit dc79d32
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 18 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
3 changes: 0 additions & 3 deletions pkg/pip_requirements.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1 @@
spaceone-core
spaceone-api
spaceone-tester
schematics
23 changes: 9 additions & 14 deletions src/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,25 +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-aws-sns-monitoring-webhook',
name="plugin-aws-sns-monitoring-webhook",
version=VERSION,
description='AWS SNS monitoring Webhook',
long_description='',
url='https://www.spaceone.dev/',
author='MEGAZONE SpaceONE Team',
author_email='[email protected]',
license='Apache License 2.0',
description="AWS SNS monitoring Webhook",
long_description="",
url="https://www.spaceone.dev/",
author="MEGAZONE SpaceONE Team",
author_email="[email protected]",
license="Apache License 2.0",
packages=find_packages(),
install_requires=[
'spaceone-core',
'spaceone-api',
'spaceone-tester',
'schematics'
],
install_requires=["spaceone-api"],
zip_safe=False,
)

0 comments on commit dc79d32

Please sign in to comment.