You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@heron.apache.org by ni...@apache.org on 2022/01/18 02:56:55 UTC

[incubator-heron] branch master updated: HeronPy 0.20.5 release prep cleanup (#3759)

This is an automated email from the ASF dual-hosted git repository.

nicknezis pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/incubator-heron.git


The following commit(s) were added to refs/heads/master by this push:
     new ee369ef  HeronPy 0.20.5 release prep cleanup (#3759)
ee369ef is described below

commit ee369ef7745df530c765e89d2e8a2eefc8d8b742
Author: Nicholas Nezis <ni...@gmail.com>
AuthorDate: Mon Jan 17 21:56:44 2022 -0500

    HeronPy 0.20.5 release prep cleanup (#3759)
---
 scripts/packages/BUILD                     | 1 +
 scripts/packages/heronpy/setup.py.template | 8 ++++----
 2 files changed, 5 insertions(+), 4 deletions(-)

diff --git a/scripts/packages/BUILD b/scripts/packages/BUILD
index 67a185d..f83ce0a 100644
--- a/scripts/packages/BUILD
+++ b/scripts/packages/BUILD
@@ -598,6 +598,7 @@ pkg_tar(
 genrule(
     name = "generate-heronpy-package",
     srcs = [
+        "//:disclaimers",
         "heronpy/requirements.txt",
         "heronpy/setup.py.template",
         "heronpy/README.txt",
diff --git a/scripts/packages/heronpy/setup.py.template b/scripts/packages/heronpy/setup.py.template
index 9358140..016562e 100644
--- a/scripts/packages/heronpy/setup.py.template
+++ b/scripts/packages/heronpy/setup.py.template
@@ -43,9 +43,9 @@ setup(
 
   url='https://github.com/apache/incubator-heron',
 
-  author='Heron Team',
-  author_email='heronstreaming@gmail.com',
-
+  author='Apache Heron (incubating)',
+  author_email='dev@heron.apache.org',
+  license='Apache License v2.0',
   classifiers=[
     'Development Status :: 3 - Alpha',
 
@@ -58,7 +58,7 @@ setup(
     'Programming Language :: Python :: 3.8',
   ],
 
-  keywords='heron topology python',
+  keywords='heron streaming analytics topology python',
   packages=find_packages(),
 
   install_requires=requirements,