diff --git a/Dockerfile b/Dockerfile index 58eeefd..661b2ba 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,4 +1,4 @@ -FROM python:3.8-slim +FROM cloudforet/python-core:1 ENV PYTHONUNBUFFERED 1 ENV SPACEONE_PORT 50051 diff --git a/pkg/pip_requirements.txt b/pkg/pip_requirements.txt index 3608164..d27dcc8 100644 --- a/pkg/pip_requirements.txt +++ b/pkg/pip_requirements.txt @@ -1,4 +1 @@ -spaceone-core -spaceone-api -spaceone-tester schematics \ No newline at end of file diff --git a/src/setup.py b/src/setup.py index 7421fa8..a2fba24 100644 --- a/src/setup.py +++ b/src/setup.py @@ -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='admin@spaceone.dev', - license='Apache License 2.0', + description="AWS SNS monitoring Webhook", + 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', - 'spaceone-tester', - 'schematics' - ], + install_requires=["spaceone-api"], zip_safe=False, )