Change package release info 70/102370/1
authorHaibin Huang <haibin.huang@intel.com>
Wed, 26 Feb 2020 06:33:49 +0000 (14:33 +0800)
committerHaibin Huang <haibin.huang@intel.com>
Wed, 26 Feb 2020 06:35:59 +0000 (14:35 +0800)
Issue-ID: MULTICLOUD-694
Signed-off-by: Haibin Huang <haibin.huang@intel.com>
Change-Id: Ib784f35fa4c4cc6759613cbab687106bc952094b

hpa/LICENSE
hpa/release.md [new file with mode: 0644]
hpa/setup.py

index fffadb0..25a6154 100644 (file)
@@ -7,7 +7,7 @@ licenses.
 
 #
 # -------------------------------------------------------------------------
-#   Copyright (c) 2015-2017 AT&T Intellectual Property
+#   Copyright (c) 2020 AT&T Intellectual Property
 #
 #   Licensed under the Apache License, Version 2.0 (the "License");
 #   you may not use this file except in compliance with the License.
diff --git a/hpa/release.md b/hpa/release.md
new file mode 100644 (file)
index 0000000..81eb33d
--- /dev/null
@@ -0,0 +1,3 @@
+python3 -m pip install --user --upgrade setuptools wheel
+python3 setup.py sdist bdist_wheel
+python3 -m twine upload dist/*
index 93babd2..d7291ce 100644 (file)
@@ -1,10 +1,14 @@
 from setuptools import setup, find_packages
 
+with open("README.md", "r") as fh:
+    long_description = fh.read()
+
 setup(
-    name='hpa',
+    name='onaphpadriver',
     version='1.0',
 
     description='HPA discovery package for stevedore',
+    long_description=long_description,
 
     author='Haibin Huang',
     author_email='haibin.huang@intel.com',