-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
2 changed files
with
31 additions
and
2 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 |
---|---|---|
|
@@ -30,10 +30,13 @@ | |
with io.open('mkl_umath/_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 = """\ | ||
Development Status :: 0 - Alpha | ||
Development Status :: 5 - Production/Stable | ||
Intended Audience :: Science/Research | ||
Intended Audience :: Developers | ||
License :: OSI Approved | ||
|
@@ -75,7 +78,8 @@ def setup_package(): | |
maintainer = "Intel Corp.", | ||
maintainer_email = "[email protected]", | ||
description = "MKL-based universal functions for NumPy arrays", | ||
long_description = """Universal functions for real and complex floating point arrays powered by Intel(R) Math Kernel Library Vector (Intel(R) MKL) and Intel(R) Short Vector Math Library (Intel(R) SVML)""", | ||
long_description = long_description, | ||
long_description_content_type="text/markdown", | ||
url = "http://github.com/IntelPython/mkl_umath", | ||
author = "Intel Corporation", | ||
download_url = "http://github.com/IntelPython/mkl_umath", | ||
|