From 335f63ff90a4eea743ad7f8e4785843f0662b92b Mon Sep 17 00:00:00 2001 From: William Nelson Date: Fri, 13 Dec 2024 11:48:38 -0700 Subject: [PATCH] chore: explicitly declare license with classifier Signed-off-by: William Nelson --- common/setup.py | 2 ++ databuilder/setup.py | 2 ++ frontend/setup.py | 2 ++ metadata/setup.py | 2 ++ search/setup.py | 2 ++ 5 files changed, 10 insertions(+) diff --git a/common/setup.py b/common/setup.py index a864d57340..18ad2df448 100644 --- a/common/setup.py +++ b/common/setup.py @@ -21,6 +21,7 @@ url='https://github.com/amundsen-io/amundsen/tree/main/common', maintainer='Amundsen TSC', maintainer_email='amundsen-tsc@lists.lfai.foundation', + license="Apache 2.0", packages=find_packages(exclude=['tests*']), install_requires=[ # Packages in here should rarely be pinned. This is because these @@ -49,6 +50,7 @@ python_requires=">=3.8", package_data={'amundsen_common': ['py.typed']}, classifiers=[ + 'License :: OSI Approved :: Apache Software License', 'Programming Language :: Python :: 3.8', 'Programming Language :: Python :: 3.9', 'Programming Language :: Python :: 3.10', diff --git a/databuilder/setup.py b/databuilder/setup.py index 91b4f62879..ee02377b63 100644 --- a/databuilder/setup.py +++ b/databuilder/setup.py @@ -110,6 +110,7 @@ url='https://www.github.com/amundsen-io/amundsen/tree/main/databuilder', maintainer='Amundsen TSC', maintainer_email='amundsen-tsc@lists.lfai.foundation', + license="Apache 2.0", packages=find_packages(exclude=['tests*']), include_package_data=True, dependency_links=[], @@ -139,6 +140,7 @@ 'schema_registry': schema_registry, }, classifiers=[ + 'License :: OSI Approved :: Apache Software License', 'Programming Language :: Python :: 3.8', 'Programming Language :: Python :: 3.9', 'Programming Language :: Python :: 3.10', diff --git a/frontend/setup.py b/frontend/setup.py index 6f415745e6..4c85dcbfb4 100644 --- a/frontend/setup.py +++ b/frontend/setup.py @@ -61,6 +61,7 @@ def build_js() -> None: url='https://www.github.com/amundsen-io/amundsen/tree/main/frontend', maintainer='Amundsen TSC', maintainer_email='amundsen-tsc@lists.lfai.foundation', + license="Apache 2.0", packages=find_packages(exclude=['tests*']), include_package_data=True, dependency_links=[], @@ -81,6 +82,7 @@ def build_js() -> None: logging_action_log=amundsen_application.log.action_log_callback:logging_action_log """, classifiers=[ + 'License :: OSI Approved :: Apache Software License', 'Programming Language :: Python :: 3.8', 'Programming Language :: Python :: 3.9', 'Programming Language :: Python :: 3.10', diff --git a/metadata/setup.py b/metadata/setup.py index 2e06defebb..3b8c54c8ec 100644 --- a/metadata/setup.py +++ b/metadata/setup.py @@ -37,6 +37,7 @@ url='https://www.github.com/amundsen-io/amundsen/tree/main/metadata', maintainer='Amundsen TSC', maintainer_email='amundsen-tsc@lists.lfai.foundation', + license="Apache 2.0", packages=find_packages(exclude=['tests*']), include_package_data=True, zip_safe=False, @@ -51,6 +52,7 @@ }, python_requires=">=3.8", classifiers=[ + 'License :: OSI Approved :: Apache Software License', 'Programming Language :: Python :: 3.8', 'Programming Language :: Python :: 3.9', ], diff --git a/search/setup.py b/search/setup.py index b456e4b323..32e69702f0 100644 --- a/search/setup.py +++ b/search/setup.py @@ -30,6 +30,7 @@ url='https://github.com/amundsen-io/amundsen/tree/main/search', maintainer='Amundsen TSC', maintainer_email='amundsen-tsc@lists.lfai.foundation', + license="Apache 2.0", packages=find_packages(exclude=['tests*']), include_package_data=True, zip_safe=False, @@ -42,6 +43,7 @@ }, python_requires=">=3.8", classifiers=[ + 'License :: OSI Approved :: Apache Software License', 'Programming Language :: Python :: 3.8', 'Programming Language :: Python :: 3.9', 'Programming Language :: Python :: 3.10',