aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--.gitignore2
-rw-r--r--INFO.yaml62
-rw-r--r--docs/conf.py1
-rw-r--r--docs/conf.yaml3
-rw-r--r--docs/index.rst17
-rw-r--r--docs/requirements.txt2
-rw-r--r--framework/src/openstack/neutron/plugin/networking-onos/networking-onos/setup.cfg1
-rw-r--r--tox.ini17
8 files changed, 105 insertions, 0 deletions
diff --git a/.gitignore b/.gitignore
new file mode 100644
index 00000000..71d7636c
--- /dev/null
+++ b/.gitignore
@@ -0,0 +1,2 @@
+.tox
+docs/_build/*
diff --git a/INFO.yaml b/INFO.yaml
new file mode 100644
index 00000000..028acc83
--- /dev/null
+++ b/INFO.yaml
@@ -0,0 +1,62 @@
+---
+project: 'ONOS Framework (ONOSFW)'
+project_creation_date: ''
+project_category: 'Collaborative Development'
+lifecycle_state: ''
+project_lead: &opnfv_onosfw_ptl
+ name: 'Wei Su'
+ email: 'su.wei@huawei.com'
+ id: 'su.wei'
+ company: 'huawei.com'
+ timezone: 'Unknown'
+primary_contact: *opnfv_onosfw_ptl
+issue_tracking:
+ type: 'jira'
+ url: 'https://jira.opnfv.org/projects/ONOSFW'
+ key: 'ONOSFW'
+mailing_list:
+ type: 'mailman2'
+ url: 'opnfv-tech-discuss@lists.opnfv.org'
+ tag: '[onosfw]'
+realtime_discussion:
+ type: irc
+ server: 'freenode.net'
+ channel: '#opnfv-onosfw'
+meetings:
+ - type: 'gotomeeting+irc'
+ agenda: 'https://wiki.opnfv.org/display/meetings/ONOSFW'
+ url: 'https//global.gotomeeting.com/join/929668373'
+ server: 'freenode.net'
+ channel: '#opnfv-onosfw'
+ repeats: 'weekly'
+ time: '17:00 UTC'
+repositories:
+ - 'onosfw'
+committers:
+ - <<: *opnfv_onosfw_ptl
+ - name: 'Ashlee Young'
+ email: 'ash@cachengo.com'
+ company: 'cachengo.org'
+ id: 'im2bz2pee'
+ - name: 'Prakash Ramchandran'
+ email: 'prakash.ramchandran@huawei.com'
+ company: 'huawei.com'
+ id: 'rprakash'
+ - name: 'Daniel Smith'
+ email: 'lmcdasm@gmail.com'
+ company: 'gmail.com'
+ id: 'lmcdasm'
+ - name: 'Tim Zhao'
+ email: 'zhaokexue@huawei.com'
+ company: 'huawei.com'
+ id: 'Soros'
+ - name: 'Patrick Liu'
+ email: 'patrick.liu@huawei.com'
+ company: 'huawei.com'
+ id: 'patliu'
+tsc:
+ # yamllint disable rule:line-length
+ approval: 'http//meetbot.opnfv.org/meetings/'
+ changes:
+ - type: 'promotion'
+ link: 'https://groups.google.com/a/onosfw.com/forum/#!topic/committers/W6eYsbzaXwE'
diff --git a/docs/conf.py b/docs/conf.py
new file mode 100644
index 00000000..3c4453e7
--- /dev/null
+++ b/docs/conf.py
@@ -0,0 +1 @@
+from docs_conf.conf import *
diff --git a/docs/conf.yaml b/docs/conf.yaml
new file mode 100644
index 00000000..a1d635d7
--- /dev/null
+++ b/docs/conf.yaml
@@ -0,0 +1,3 @@
+---
+project_cfg: opnfv
+project: ONOSFW
diff --git a/docs/index.rst b/docs/index.rst
new file mode 100644
index 00000000..1f613dae
--- /dev/null
+++ b/docs/index.rst
@@ -0,0 +1,17 @@
+.. _onosfw:
+
+.. This work is licensed under a Creative Commons Attribution 4.0 International License.
+.. http://creativecommons.org/licenses/by/4.0
+.. SPDX-License-Identifier CC-BY-4.0
+.. (c) Open Platform for NFV Project, Inc. and its contributors
+
+*********************************
+OPNFV Onosfw (ONAP-Onosfwmated OPNFV)
+*********************************
+
+.. toctree::
+ :numbered:
+ :maxdepth: 3
+
+ design/index
+ release/index
diff --git a/docs/requirements.txt b/docs/requirements.txt
new file mode 100644
index 00000000..9fde2df2
--- /dev/null
+++ b/docs/requirements.txt
@@ -0,0 +1,2 @@
+lfdocs-conf
+sphinx_opnfv_theme
diff --git a/framework/src/openstack/neutron/plugin/networking-onos/networking-onos/setup.cfg b/framework/src/openstack/neutron/plugin/networking-onos/networking-onos/setup.cfg
index 74c33eeb..f32922b0 100644
--- a/framework/src/openstack/neutron/plugin/networking-onos/networking-onos/setup.cfg
+++ b/framework/src/openstack/neutron/plugin/networking-onos/networking-onos/setup.cfg
@@ -6,6 +6,7 @@ description-file =
author = OpenStack
author-email = openstack-dev@lists.openstack.org
home-page = http://www.openstack.org/
+license = Apache-2.0
classifier =
Environment :: OpenStack
Intended Audience :: Information Technology
diff --git a/tox.ini b/tox.ini
new file mode 100644
index 00000000..69aa1893
--- /dev/null
+++ b/tox.ini
@@ -0,0 +1,17 @@
+[tox]
+minversion = 1.6
+envlist =
+ docs,
+ docs-linkcheck
+skipsdist = true
+
+[testenv:docs]
+deps = -rdocs/requirements.txt
+commands =
+ sphinx-build -b html -n -d {envtmpdir}/doctrees ./docs/ {toxinidir}/docs/_build/html
+ echo "Generated docs available in {toxinidir}/docs/_build/html"
+whitelist_externals = echo
+
+[testenv:docs-linkcheck]
+deps = -rdocs/requirements.txt
+commands = sphinx-build -b linkcheck -d {envtmpdir}/doctrees ./docs/ {toxinidir}/docs/_build/linkcheck