Added A1 policy handler, healthcheck handler, sdl handler and alarm
[ric-app/hw-python.git] / setup.py
index 0da755d..e832e67 100644 (file)
--- a/setup.py
+++ b/setup.py
 # ==================================================================================
 
 from setuptools import setup, find_packages
+import os
+
+
+def read(fname):
+    return open(os.path.join(os.path.dirname(__file__), fname)).read()
+
 
 setup(
     name='hw_python',
@@ -23,8 +29,13 @@ setup(
     packages=find_packages(),
     url='https://gerrit.o-ran-sc.org/r/admin/repos/ric-app/hw-python',
     license='Apache 2.0',
+    description="Hello World Python XAPP for O-RAN RIC Platform",
+    long_description=read('README.md'),
+    author='Rahul Banerji',
+    author_email='r.banerji@samsung.com',
+    python_requires='>=3.8',
     install_requires=["ricxappframe>=1.1.1,<2.0.0"],
-    entry_points={"console_scripts": ["run-hw-python.py=src.main:start"]},  # adds a magical entrypoint for Docker
+    entry_points={"console_scripts": ["run-hw-python.py=src.main:launchXapp"]},  # adds a magical entrypoint for Docker
     data_files=[("", ["LICENSE.txt"])],
 )