-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix: modified parts of code related to docker and versioning
- Loading branch information
1 parent
c8908ae
commit dc79d32
Showing
3 changed files
with
10 additions
and
18 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1 @@ | ||
spaceone-core | ||
spaceone-api | ||
spaceone-tester | ||
schematics |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -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, | ||
) |