Skip to content

Commit 1154d24

Browse files
authored
update pyproject.toml (#148)
* update pyproject.toml * address comments
1 parent 58c8469 commit 1154d24

File tree

3 files changed

+7
-10
lines changed

3 files changed

+7
-10
lines changed

conda-recipe-cf/meta.yaml

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -18,13 +18,12 @@ requirements:
1818
- {{ compiler('c') }}
1919
host:
2020
- python
21-
- setuptools
21+
- setuptools >=77
2222
- mkl-devel
2323
- cython
2424
- numpy
2525
run:
2626
- python
27-
- mkl
2827
- mkl-service
2928
- numpy
3029

@@ -41,6 +40,6 @@ test:
4140

4241
about:
4342
home: http://github.com/IntelPython/mkl_fft
44-
license: BSD-3
43+
license: BSD-3-Clause
4544
license_file: LICENSE.txt
4645
summary: NumPy-based implementation of Fast Fourier Transform using Intel (R) Math Kernel Library

conda-recipe/meta.yaml

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -18,13 +18,12 @@ requirements:
1818
- {{ compiler('c') }}
1919
host:
2020
- python
21-
- setuptools
21+
- setuptools >=77
2222
- mkl-devel
2323
- cython
2424
- numpy-base
2525
run:
2626
- python
27-
- mkl
2827
- mkl-service
2928
- {{ pin_compatible('numpy') }}
3029

@@ -41,6 +40,6 @@ test:
4140

4241
about:
4342
home: http://github.com/IntelPython/mkl_fft
44-
license: BSD-3
43+
license: BSD-3-Clause
4544
license_file: LICENSE.txt
4645
summary: NumPy-based implementation of Fast Fourier Transform using Intel (R) Math Kernel Library

pyproject.toml

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@
2525

2626
[build-system]
2727
build-backend = "setuptools.build_meta"
28-
requires = ["setuptools>=64", "Cython", "numpy"]
28+
requires = ["setuptools>=77", "Cython", "numpy", "mkl-devel"]
2929

3030
[project]
3131
authors = [
@@ -35,7 +35,6 @@ classifiers = [
3535
"Development Status :: 5 - Production/Stable",
3636
"Intended Audience :: Science/Research",
3737
"Intended Audience :: Developers",
38-
"License :: OSI Approved",
3938
"Programming Language :: C",
4039
"Programming Language :: Python",
4140
"Programming Language :: Python :: 3",
@@ -50,11 +49,11 @@ classifiers = [
5049
"Operating System :: POSIX",
5150
"Operating System :: Unix"
5251
]
53-
dependencies = ["numpy >=1.26.4", "mkl", "mkl-service"]
52+
dependencies = ["numpy>=1.26.4", "mkl-service"]
5453
description = "MKL-based FFT transforms for NumPy arrays"
5554
dynamic = ["version"]
5655
keywords = ["DFTI", "FFT", "Fourier", "MKL"]
57-
license = {text = "BSD"}
56+
license = "BSD-3-Clause"
5857
name = "mkl_fft"
5958
readme = {file = "README.md", content-type = "text/markdown"}
6059
requires-python = ">=3.9,<3.13"

0 commit comments

Comments
 (0)