Skip to content

Commit 93dcaed

Browse files
authored
Merge pull request #40 from Sooyoung98/master
Changed parts of code related to Docker and Release
2 parents f6dfd19 + 5b63e7a commit 93dcaed

3 files changed

Lines changed: 10 additions & 19 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,5 +1,3 @@
1-
spaceone-core
2-
spaceone-api
31
schematics
42
requests
53
pandas

src/setup.py

Lines changed: 9 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -16,27 +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-http-file-cost-datasource',
24+
name="plugin-http-file-cost-datasource",
2525
version=VERSION,
26-
description='Data source plugin for file by requesting HTTP',
27-
long_description='',
28-
url='https://https://cloudforet.io',
29-
author='Cloudforet Admin',
30-
author_email='admin@cloudforet.io',
31-
license='Apache License 2.0',
26+
description="Data source plugin for file by requesting HTTP",
27+
long_description="",
28+
url="https://https://cloudforet.io",
29+
author="Cloudforet Admin",
30+
author_email="admin@cloudforet.io",
31+
license="Apache License 2.0",
3232
packages=find_packages(),
33-
install_requires=[
34-
'spaceone-core',
35-
'spaceone-api',
36-
'schematics',
37-
'requests',
38-
'pandas',
39-
'numpy'
40-
],
33+
install_requires=["spaceone-api", "schematics", "requests", "pandas", "numpy"],
4134
zip_safe=False,
4235
)

0 commit comments

Comments
 (0)