Skip to content

Commit f33eb99

Browse files
committed
Update setup.py meta-data to match from main SimpleITK repo
1 parent f7e89ab commit f33eb99

File tree

1 file changed

+12
-5
lines changed

1 file changed

+12
-5
lines changed

setup.py

Lines changed: 12 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,9 @@
22
from os import sys
33
from skbuild import setup
44

5+
with open('SimpleITK/Readme.md', encoding='utf-8') as f:
6+
long_description = f.read()
7+
58

69
setup(
710
name='SimpleITK',
@@ -12,9 +15,8 @@
1215
package_dir={'SimpleITK':'SimpleITK'},
1316
download_url=r'https://www.itk.org/SimpleITKDoxygen/html/PyDownloadPage.html',
1417
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',
1820
classifiers=[
1921
"License :: OSI Approved :: Apache Software License",
2022
"Programming Language :: Python",
@@ -33,8 +35,13 @@
3335
"Operating System :: MacOS"
3436
],
3537
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+
},
3845
install_requires=[],
3946
zip_safe=False
4047
)

0 commit comments

Comments
 (0)