init
Showing
.gitattributes
0 → 100644
.gitignore
0 → 100644
Dockerfile
0 → 100644
INFO.yaml
0 → 100644
| --- | ||
| project: 'ric_app_hw_python' | ||
| project_creation_date: '2020-27-10' | ||
| project_category: '' | ||
| lifecycle_state: 'Incubation' | ||
| project_lead: &oran_ric_app_hw_python_ptl | ||
| name: 'Matti Hiltunen' | ||
| email: '[email protected]' | ||
| id: 'MattiHiltunen' | ||
| company: 'AT&T Labs-Research' | ||
| timezone: 'America/New_York' | ||
| primary_contact: *oran_ric_app_hw_python_ptl | ||
| issue_tracking: | ||
| type: 'jira' | ||
| url: 'https://jira.o-ran-sc.org/projects/' | ||
| key: 'ric_app_hw' | ||
| mailing_list: | ||
| type: 'groups.io' | ||
| url: 'https://lists.o-ran-sc.org/g/main' | ||
| tag: '[]' | ||
| realtime_discussion: | ||
| type: 'irc' | ||
| server: 'freenode.net' | ||
| channel: '#oran' | ||
| meetings: | ||
| - type: 'gotomeeting+irc' | ||
| agenda: 'https://wiki.o-ran-sc.org/display/' | ||
| url: '' | ||
| server: 'freenode.net' | ||
| channel: '#oran' | ||
| repeats: '' | ||
| time: '' | ||
| repositories: | ||
| - ric-app/hw-python | ||
| committers: | ||
| - <<: *oran_ric_app_hw_python_ptl | ||
| - name: 'Subhash Kumar Singh' | ||
| email: '[email protected]' | ||
| company: 'Samsung' | ||
| id: 'subhash_singh' | ||
| timezone: 'Asia/Kolkata' | ||
| - name: 'Naman Gupta' | ||
| email: '[email protected]' | ||
| company: 'Samsung' | ||
| id: 'naman.gupta' | ||
| timezone: 'Asia/Kolkata' | ||
| tsc: | ||
| # yamllint disable rule:line-length | ||
| approval: 'https://wiki.o-ran-sc.org/display/TOC#ORANSCTechnicalOversightCommittee(TOC)-20200304' | ||
| changes: | ||
| - type: 'Deletion' | ||
| name: 'Rahul Banerji' | ||
| link: 'https://lists.o-ran-sc.org/g/toc/message/438' | ||
| - type: 'Addition' | ||
| name: 'Naman Gupta' | ||
| link: 'https://lists.o-ran-sc.org/g/toc/message/438' |
LICENSE.txt
0 → 100644
README.md
0 → 100644
container-tag.yaml
0 → 100644
docs/_static/logo.png
0 → 100644
This diff was suppressed by a .gitattributes entry.
docs/conf.py
0 → 100644
docs/conf.yaml
0 → 100644
docs/favicon.ico
0 → 100644
14.7 KB
docs/index.rst
0 → 100644
docs/installation-guide.rst
0 → 100644
docs/onboard-and-deploy.rst
0 → 100644
docs/overview.rst
0 → 100644
docs/release-notes.rst
0 → 100644
docs/requirements-docs.txt
0 → 100644
docs/user-guide.rst
0 → 100644
init/config-file.json
0 → 100644
init/init_script.py
0 → 100644
init/schema.json
0 → 100644
init/test_route.rt
0 → 100644
resources/pod.yaml
0 → 100644
setup.py
0 → 100644
| # ================================================================================== | ||
| # | ||
| # Copyright (c) 2020 Samsung Electronics Co., Ltd. All Rights Reserved. | ||
| # | ||
| # Licensed under the Apache License, Version 2.0 (the "License"); | ||
| # you may not use this file except in compliance with the License. | ||
| # You may obtain a copy of the License at | ||
| # | ||
| # http://www.apache.org/licenses/LICENSE-2.0 | ||
| # | ||
| # Unless required by applicable law or agreed to in writing, software | ||
| # distributed under the License is distributed on an "AS IS" BASIS, | ||
| # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
| # See the License for the specific language governing permissions and | ||
| # limitations under the License. | ||
| # ================================================================================== | ||
| 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', | ||
| version='0.0.1', | ||
| 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='Naman Gupta', | ||
| author_email='[email protected]', | ||
| python_requires='>=3.8', | ||
| install_requires=["ricxappframe>=1.1.1,<2.3.0"], | ||
| entry_points={"console_scripts": ["run-hw-python.py=src.main:launchXapp"]}, # adds a magical entrypoint for Docker | ||
| data_files=[("", ["LICENSE.txt"])], | ||
| ) | ||
src/__init__.py
0 → 100644
src/handler/_BaseHandler.py
0 → 100644
src/handler/__init__.py
0 → 100644
src/hwxapp.py
0 → 100644
src/main.py
0 → 100644
src/manager/MetricManager.py
0 → 100644
src/manager/SdlManager.py
0 → 100644
src/manager/_BaseManager.py
0 → 100644
src/manager/__init__.py
0 → 100644
src/utils/__init__.py
0 → 100644
src/utils/constants.py
0 → 100644