Merge "Fix INF-371 inventoryChange notification of the resourceType, resourcePool...
authorBin Yang <bin.yang@windriver.com>
Mon, 28 Nov 2022 03:58:19 +0000 (03:58 +0000)
committerGerrit Code Review <gerrit@o-ran-sc.org>
Mon, 28 Nov 2022 03:58:19 +0000 (03:58 +0000)
Dockerfile
setup.py

index ff9a4e7..23f9add 100644 (file)
@@ -84,3 +84,4 @@ RUN set -ex \
 WORKDIR /src
 
 # USER $user
+ENV PYTHONHASHSEED=0
index 15d0e9e..f458ef1 100644 (file)
--- a/setup.py
+++ b/setup.py
@@ -3,14 +3,18 @@ from setuptools import find_packages
 
 setup(
     name="o2imsdms",
-    version="1.0",
+    version="1.0.0",
     packages=find_packages(),
-    license="LICENSE",
-    description="Represent O2 IMS and O2 DMS",
+    license="Apache-2.0",
+    author='Bin Yang',
+    author_email='bin.yang@windriver.com',
+    description="Represent StarlingX as an O-RAN O-Cloud by exposing O-RAN Compliant O2 IMS and O2 DMS Interfaces",
+    url='https://docs.o-ran-sc.org/projects/o-ran-sc-pti-o2/en/latest/index.html',
     install_requires=[
         'httplib2',
         # 'distributedcloud-client',
         # 'cgtsclient',
+        # 'fmclient',
         'babel',  # Required by distributedcloud-client
         'PrettyTable<0.8,>=0.7.2',  # Required by distributedcloud-client
     ]