|
30 | 30 | with io.open('mkl_umath/_version.py', 'rt', encoding='utf8') as f: |
31 | 31 | version = re.search(r'__version__ = \'(.*?)\'', f.read()).group(1) |
32 | 32 |
|
| 33 | +with open("README.md", "r", encoding="utf-8") as file: |
| 34 | + long_description = file.read() |
| 35 | + |
33 | 36 | VERSION = version |
34 | 37 |
|
35 | 38 | CLASSIFIERS = """\ |
36 | | -Development Status :: 0 - Alpha |
| 39 | +Development Status :: 5 - Production/Stable |
37 | 40 | Intended Audience :: Science/Research |
38 | 41 | Intended Audience :: Developers |
39 | 42 | License :: OSI Approved |
@@ -75,7 +78,8 @@ def setup_package(): |
75 | 78 | maintainer = "Intel Corp.", |
76 | 79 | maintainer_email = "scripting@intel.com", |
77 | 80 | description = "MKL-based universal functions for NumPy arrays", |
78 | | - 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)""", |
| 81 | + long_description = long_description, |
| 82 | + long_description_content_type="text/markdown", |
79 | 83 | url = "http://github.com/IntelPython/mkl_umath", |
80 | 84 | author = "Intel Corporation", |
81 | 85 | download_url = "http://github.com/IntelPython/mkl_umath", |
|
0 commit comments