|
2 | 2 | from os import sys |
3 | 3 | from skbuild import setup |
4 | 4 |
|
| 5 | +with open('SimpleITK/Readme.md', encoding='utf-8') as f: |
| 6 | + long_description = f.read() |
| 7 | + |
5 | 8 |
|
6 | 9 | setup( |
7 | 10 | name='SimpleITK', |
|
12 | 15 | package_dir={'SimpleITK':'SimpleITK'}, |
13 | 16 | download_url=r'https://www.itk.org/SimpleITKDoxygen/html/PyDownloadPage.html', |
14 | 17 | description=r'SimpleITK is a simplified interface to the Insight Toolkit (ITK) for image registration and segmentation', |
15 | | - long_description =r'SimpleITK provides an abstraction layer to ITK that enables developers \ |
16 | | - and users to access the powerful features of the InsightToolkit in an easy \ |
17 | | - to use manner for biomedical image analysis.', |
| 18 | + long_description = long_description, |
| 19 | + long_description_content_type='text/markdown', |
18 | 20 | classifiers=[ |
19 | 21 | "License :: OSI Approved :: Apache Software License", |
20 | 22 | "Programming Language :: Python", |
|
33 | 35 | "Operating System :: MacOS" |
34 | 36 | ], |
35 | 37 | license='Apache', |
36 | | - keywords='SimpleITK ITK InsightToolkit segmentation registration', |
37 | | - url=r'https://simpleitk.org/', |
| 38 | + keywords = 'SimpleITK ITK InsightToolkit segmentation registration', |
| 39 | + url = r'http://simpleitk.org/', |
| 40 | + project_urls={ |
| 41 | + "Bug Tracker": "https://github.com/SimpleITK/SimpleITK/issues", |
| 42 | + "Documentation": "https://simpleitk.readthedocs.io/en/release/", |
| 43 | + "Source Code": "https://github.com/SimpleITK/SimpleITK", |
| 44 | + }, |
38 | 45 | install_requires=[], |
39 | 46 | zip_safe=False |
40 | 47 | ) |
0 commit comments