--- /dev/null
+1.Files ending in .txt, .png, .gif, .jpg, .tiff, .svg, .pdf, .docs, .odf, .xml, or .md in the current directory
+ or subdirectories are licensed under the CREATIVE COMMONS ATTRIBUTION 4.0 INTERNATIONAL LICENSE.
+Full license text at https://creativecommons.org/licenses/by/4.0/legalcode.
+
+2.Unless otherwise specified, all other files in the current directory and subdirectories
+ are licensed under Apache 2.0 license.
+-----------------------
+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.
+-------------------------
import sys\r
\r
if sys.version_info < (3, 0):\r
- sys.exit('VNF SDK requires Python 3.0+')\r
+ sys.exit('VNF SDK ICE server requires Python 3.0+')\r
\r
root_dir = os.path.dirname(__file__)\r
install_requires = []\r
else:\r
install_requires.append(requirement)\r
\r
+# read __version__\r
+exec(open('./version.py').read())\r
+\r
setup(\r
name='vnfsdk-ice-server',\r
- version='0.1',\r
- description='VNF SDK Heat validation tool',\r
+ version= __version__,\r
+ description='VNF SDK Heat validation REST server',\r
license='Apache License Version 2.0',\r
url='http://onap.org/',\r
\r
packages=find_packages('.'),\r
-# packages=[\r
-# 'heat_test',\r
-# 'heat_test.ice_validator',\r
-# 'heat_test.ice_validator.tests',\r
-# 'heat_test.ice_validator.tests.utils'\r
-# ],\r
\r
-package_dir={'heat_test': 'heat_test'},\r
-# package_dir={\r
-# 'heat_test': 'src/heat_test',\r
-# 'heat_test.ice_validator': 'src/heat_test/ice_validator',\r
-# 'heat_test.ice_validator.tests': 'src/heat_test/ice_validator/tests',\r
-# 'heat_test.ice_validator.tests.utils': 'src/heat_test/ice_validator/tests/utils'\r
-# },\r
+ package_dir={'heat_test': 'heat_test'},\r
\r
include_package_data=True,\r
install_requires=install_requires,\r