Add license here so shows up in pypi 04/604/1
authorTommy Carpenter <tommy@research.att.com>
Wed, 31 Jul 2019 15:08:25 +0000 (11:08 -0400)
committerTommy Carpenter <tommy@research.att.com>
Wed, 31 Jul 2019 15:08:29 +0000 (11:08 -0400)
Issue-ID: RICPLT-1855
Change-Id: Iadb3858d31b4b3549ad74b9335b8b7ab05a427d8
Signed-off-by: Tommy Carpenter <tommy@research.att.com>
src/bindings/rmr-python/Changelog.md
src/bindings/rmr-python/LICENSE.txt [new file with mode: 0644]
src/bindings/rmr-python/setup.cfg [new file with mode: 0644]
src/bindings/rmr-python/setup.py

index cd72de4..9a890c1 100644 (file)
@@ -4,6 +4,9 @@ All notable changes to this project will be documented in this file.
 The format is based on [Keep a Changelog](http://keepachangelog.com/)
 and this project adheres to [Semantic Versioning](http://semver.org/).
 
+## [0.10.2] - 7/31/2019
+    * Include license here per Jira RICPLT-1855
+
 ## [0.10.0] - 5/15/2019
     * Fix a bug in rmr mock that prevented it for being used for rmr_rcv (was only usable for rmr_torcv)
     * Add more unit tests, esp for message summary
diff --git a/src/bindings/rmr-python/LICENSE.txt b/src/bindings/rmr-python/LICENSE.txt
new file mode 100644 (file)
index 0000000..e723ccb
--- /dev/null
@@ -0,0 +1,29 @@
+
+       Unless otherwise specified, all software contained herein is licensed
+       under the Apache License, Version 2.0 (the "Software License");
+       you may not use this software except in compliance with the Software
+       License. You may obtain a copy of the Software License at
+       
+               http://www.apache.org/licenses/LICENSE-2.0
+       
+       Unless required by applicable law or agreed to in writing, software
+       distributed under the Software License is distributed on an "AS IS" BASIS,
+       WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+       See the Software License for the specific language governing permissions
+       and limitations under the Software License.
+
+
+
+       Unless otherwise specified, all documentation contained herein is licensed
+       under the Creative Commons License, Attribution 4.0 Intl. (the
+       "Documentation License"); you may not use this documentation except in
+       compliance with the Documentation License. You may obtain a copy of the
+       Documentation License at
+       
+               https://creativecommons.org/licenses/by/4.0/
+       
+       Unless required by applicable law or agreed to in writing, documentation
+       distributed under the Documentation License is distributed on an "AS IS"
+       BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
+       implied. See the Documentation License for the specific language governing
+       permissions and limitations under the Documentation License.
diff --git a/src/bindings/rmr-python/setup.cfg b/src/bindings/rmr-python/setup.cfg
new file mode 100644 (file)
index 0000000..498ec14
--- /dev/null
@@ -0,0 +1,2 @@
+[metadata]
+license_file = LICENSE.txt
index b15f15a..ac0c19d 100644 (file)
@@ -18,7 +18,7 @@ from setuptools import setup, find_packages
 
 setup(
     name="rmr",
-    version="0.10.1",
+    version="0.10.2",
     packages=find_packages(),
     author="Tommy Carpenter",
     description="Python wrapper for RIC RMR",