feng-tao closed pull request #4503: [AIRFLOW-3691] Update notice to 2019 URL: https://github.com/apache/airflow/pull/4503
This is a PR merged from a forked repository. As GitHub hides the original diff on merge, it is displayed below for the sake of provenance: As this is a foreign pull request (from a fork), the diff is supplied below (as it won't show otherwise due to GitHub magic): diff --git a/NOTICE b/NOTICE index a642546efb..b478303ed6 100644 --- a/NOTICE +++ b/NOTICE @@ -1,5 +1,5 @@ Apache Airflow -Copyright 2016-2018 The Apache Software Foundation +Copyright 2016-2019 The Apache Software Foundation This product includes software developed at The Apache Software Foundation (http://www.apache.org/). diff --git a/setup.py b/setup.py index 7a06fbf94a..da0d3bad9d 100644 --- a/setup.py +++ b/setup.py @@ -21,6 +21,7 @@ from setuptools.command.test import test as TestCommand import imp +import io import logging import os import sys @@ -34,6 +35,9 @@ PY3 = sys.version_info[0] == 3 +with io.open('README.md', encoding='utf-8') as f: + long_description = f.read() + # See LEGAL-362 def verify_gpl_dependency(): @@ -291,6 +295,8 @@ def do_setup(): setup( name='apache-airflow', description='Programmatically author, schedule and monitor data pipelines', + long_description=long_description, + long_description_content_type='text/markdown', license='Apache License 2.0', version=version, packages=find_packages(exclude=['tests*']), ---------------------------------------------------------------- This is an automated message from the Apache Git Service. To respond to the message, please log on GitHub and use the URL above to go to the specific comment. For queries about this service, please contact Infrastructure at: [email protected] With regards, Apache Git Services
