Skip to content

Commit

Permalink
chore: explicitly declare license with classifier
Browse files Browse the repository at this point in the history
  • Loading branch information
WilliamRoyNelson committed Dec 13, 2024
1 parent 77c420c commit 8e63980
Show file tree
Hide file tree
Showing 5 changed files with 10 additions and 0 deletions.
2 changes: 2 additions & 0 deletions common/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -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',
Expand Down
2 changes: 2 additions & 0 deletions databuilder/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -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=[],
Expand Down Expand Up @@ -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',
Expand Down
2 changes: 2 additions & 0 deletions frontend/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -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=[],
Expand All @@ -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',
Expand Down
2 changes: 2 additions & 0 deletions metadata/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -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,
Expand All @@ -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',
],
Expand Down
2 changes: 2 additions & 0 deletions search/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -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,
Expand All @@ -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',
Expand Down

0 comments on commit 8e63980

Please sign in to comment.