-
Notifications
You must be signed in to change notification settings - Fork 16
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #61 from IntelPython/upd_wheel_description
- Loading branch information
Showing
3 changed files
with
23 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
{% set version = "1.3.0" %} | ||
{% set buildnumber = 0 %} | ||
{% set buildnumber = 1 %} | ||
|
||
package: | ||
name: mkl_fft | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -30,6 +30,9 @@ | |
with io.open('mkl_fft/_version.py', 'rt', encoding='utf8') as f: | ||
version = re.search(r'__version__ = \'(.*?)\'', f.read()).group(1) | ||
|
||
with open("README.md", "r", encoding="utf-8") as file: | ||
long_description = file.read() | ||
|
||
VERSION = version | ||
|
||
CLASSIFIERS = """\ | ||
|
@@ -77,15 +80,16 @@ def setup_package(): | |
maintainer = "Intel Corp.", | ||
maintainer_email = "[email protected]", | ||
description = "MKL-based FFT transforms for NumPy arrays", | ||
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""", | ||
long_description = long_description, | ||
long_description_content_type="text/markdown", | ||
url = "http://github.com/IntelPython/mkl_fft", | ||
author = "Intel Corporation", | ||
download_url = "http://github.com/IntelPython/mkl_fft", | ||
license = 'BSD', | ||
classifiers = [_f for _f in CLASSIFIERS.split('\n') if _f], | ||
platforms = ["Windows", "Linux", "Mac OS-X"], | ||
test_suite = 'nose.collector', | ||
python_requires = '>=3.5', | ||
python_requires = '>=3.6', | ||
install_requires = ['numpy >=1.16'], | ||
configuration = configuration | ||
) | ||
|