Skip to content

Commit f7b2c68

Browse files
Merge pull request #61 from IntelPython/upd_wheel_description
2 parents 796fd43 + 65f7a99 commit f7b2c68

File tree

3 files changed

+23
-3
lines changed

3 files changed

+23
-3
lines changed

README.md

+16
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,22 @@ as a stand-alone package. It can be installed into conda environment using
1010

1111
---
1212

13+
To install mkl_fft Pypi package please use following command:
14+
15+
```
16+
python -m pip install --i https://pypi.anaconda.org/intel/simple -extra-index-url https://pypi.org/simple mkl_fft
17+
```
18+
19+
If command above installs NumPy package from the Pypi, please use following command to install Intel optimized NumPy wheel package from Anaconda Cloud:
20+
21+
```
22+
python -m pip install --i https://pypi.anaconda.org/intel/simple -extra-index-url https://pypi.org/simple mkl_fft numpy==<numpy_version>
23+
```
24+
25+
Where `<numpy_version>` should be the latest version from https://anaconda.org/intel/numpy
26+
27+
---
28+
1329
Since MKL FFT supports performing discrete Fourier transforms over non-contiguously laid out arrays, MKL can be directly
1430
used on any well-behaved floating point array with no internal overlaps for both in-place and not in-place transforms of
1531
arrays in single and double floating point precision.

conda-recipe/meta.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{% set version = "1.3.0" %}
2-
{% set buildnumber = 0 %}
2+
{% set buildnumber = 1 %}
33

44
package:
55
name: mkl_fft

setup.py

+6-2
Original file line numberDiff line numberDiff line change
@@ -30,6 +30,9 @@
3030
with io.open('mkl_fft/_version.py', 'rt', encoding='utf8') as f:
3131
version = re.search(r'__version__ = \'(.*?)\'', f.read()).group(1)
3232

33+
with open("README.md", "r", encoding="utf-8") as file:
34+
long_description = file.read()
35+
3336
VERSION = version
3437

3538
CLASSIFIERS = """\
@@ -77,15 +80,16 @@ def setup_package():
7780
maintainer = "Intel Corp.",
7881
maintainer_email = "[email protected]",
7982
description = "MKL-based FFT transforms for NumPy arrays",
80-
long_description = """NumPy-based implementation of Fast Fourier Transform using Intel (R) Math Kernel Library. 1D and ND, complex and real transforms, in-place and not-in-place on single and double precision arrays""",
83+
long_description = long_description,
84+
long_description_content_type="text/markdown",
8185
url = "http://github.com/IntelPython/mkl_fft",
8286
author = "Intel Corporation",
8387
download_url = "http://github.com/IntelPython/mkl_fft",
8488
license = 'BSD',
8589
classifiers = [_f for _f in CLASSIFIERS.split('\n') if _f],
8690
platforms = ["Windows", "Linux", "Mac OS-X"],
8791
test_suite = 'nose.collector',
88-
python_requires = '>=3.5',
92+
python_requires = '>=3.6',
8993
install_requires = ['numpy >=1.16'],
9094
configuration = configuration
9195
)

0 commit comments

Comments
 (0)