From d5ff0e78b4fca878df2e61bdd2414535a8c1c5e8 Mon Sep 17 00:00:00 2001 From: Matthew Vine <32849887+MattTheCuber@users.noreply.github.com> Date: Wed, 12 Nov 2025 08:42:11 -0500 Subject: [PATCH 1/2] Add MIT license to setup.py Added license information to the setup configuration. --- setup.py | 1 + 1 file changed, 1 insertion(+) diff --git a/setup.py b/setup.py index 5e0112b..3f05548 100644 --- a/setup.py +++ b/setup.py @@ -24,6 +24,7 @@ def get_version_tag() -> str: description="Implementation of 1D, 2D, and 3D FFT convolutions in PyTorch.", long_description=open("README.md").read(), long_description_content_type="text/markdown", + license = "MIT", install_requires=["numpy", "torch>=1.8"], extras_require={"test": ["black", "flake8", "isort", "pytest", "pytest-cov"]}, classifiers=[ From f63230d4909a5ac08c2c39fd3808756c44370e18 Mon Sep 17 00:00:00 2001 From: Matthew Vine <32849887+MattTheCuber@users.noreply.github.com> Date: Wed, 12 Nov 2025 08:52:59 -0500 Subject: [PATCH 2/2] Update setup.py Co-authored-by: gemini-code-assist[bot] <176961590+gemini-code-assist[bot]@users.noreply.github.com> --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index 3f05548..bbd7452 100644 --- a/setup.py +++ b/setup.py @@ -24,7 +24,7 @@ def get_version_tag() -> str: description="Implementation of 1D, 2D, and 3D FFT convolutions in PyTorch.", long_description=open("README.md").read(), long_description_content_type="text/markdown", - license = "MIT", + license="MIT", install_requires=["numpy", "torch>=1.8"], extras_require={"test": ["black", "flake8", "isort", "pytest", "pytest-cov"]}, classifiers=[