|
73 | 73 | with open('README.md') as f: |
74 | 74 | __readme_file__ = f.read() |
75 | 75 |
|
76 | | -with open('LICENSE.txt') as f: |
77 | | - __license_file__ = f.read() |
78 | | - |
79 | 76 | CLASSIFIERS = """\ |
80 | | -Development Status :: 0 - Alpha |
| 77 | +Development Status :: 4 - Beta |
81 | 78 | Intended Audience :: Science/Research |
82 | 79 | Intended Audience :: Developers |
83 | 80 | License :: OSI Approved |
|
183 | 180 | version=__version__, |
184 | 181 | description="NumPy-like API accelerated with SYCL", |
185 | 182 | long_description=__readme_file__, |
| 183 | + long_description_content_type="text/markdown", |
186 | 184 | author="Intel Corporation", |
187 | | - author_email="Intel Corporation", |
188 | 185 | maintainer="Intel Corp.", |
189 | 186 | maintainer_email="scripting@intel.com", |
190 | 187 | url="https://intelpython.github.io/dpnp/", |
191 | 188 | download_url="https://github.com/IntelPython/dpnp", |
192 | | - license=__license_file__, |
| 189 | + license='BSD', |
193 | 190 | classifiers=[_f for _f in CLASSIFIERS.split('\n') if _f], |
194 | 191 | keywords="sycl numpy python3 intel mkl oneapi gpu dpcpp pstl", |
195 | 192 | platforms=["Linux", "Windows"], |
|
0 commit comments