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 c3124bd commit bda8176
Show file tree
Hide file tree
Showing 3 changed files with 28 additions and 34 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 CLOUDONE_PORT 50051
Expand Down
2 changes: 0 additions & 2 deletions pkg/pip_requirements.txt
Original file line number Diff line number Diff line change
@@ -1,5 +1,3 @@
spaceone-core
spaceone-api
schematics
adal
msrestazure
Expand Down
58 changes: 27 additions & 31 deletions src/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,44 +16,40 @@

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-azure-cloud-services',
name="plugin-azure-cloud-services",
version=VERSION,
description='MS Azure cloud service inventory collector',
long_description='',
url='https://cloudforet.io/',
author='Cloudforet Admin',
author_email='admin@cloudforet.io',
license='Apache License 2.0',
description="MS Azure cloud service inventory collector",
long_description="",
url="https://cloudforet.io/",
author="Cloudforet Admin",
author_email="admin@cloudforet.io",
license="Apache License 2.0",
packages=find_packages(),
install_requires=[
'spaceone-core',
'spaceone-api',
'spaceone-tester',
'schematics',
'adal',
'msrestazure',
'azure-identity',
'azure-mgmt-resource',
'azure-mgmt-compute',
'azure-mgmt-network',
'azure-mgmt-sql',
'azure-mgmt-monitor',
'azure-mgmt-storage',
'azure-mgmt-keyvault',
'azure-keyvault-certificates',
'azure-keyvault-secrets',
'azure-mgmt-rdbms',
'azure-mgmt-cosmosdb',
'azure-mgmt-containerinstance',
'azure-mgmt-webpubsub'
"spaceone-api",
"schematics",
"adal",
"msrestazure",
"azure-identity",
"azure-mgmt-resource",
"azure-mgmt-compute",
"azure-mgmt-network",
"azure-mgmt-sql",
"azure-mgmt-monitor",
"azure-mgmt-storage",
"azure-mgmt-keyvault",
"azure-keyvault-certificates",
"azure-keyvault-secrets",
"azure-mgmt-rdbms",
"azure-mgmt-cosmosdb",
"azure-mgmt-containerinstance",
"azure-mgmt-webpubsub",
],
package_data={
'spaceone': ['inventory/model/*/widget/*.yaml']
},
package_data={"spaceone": ["inventory/model/*/widget/*.yaml"]},
zip_safe=False,
)

0 comments on commit bda8176

Please sign in to comment.