Skip to content

Commit

Permalink
ENH: Provide a more complete PyPI description
Browse files Browse the repository at this point in the history
  • Loading branch information
aylward committed Mar 1, 2022
1 parent 8cb12a2 commit fa9d2bf
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,10 @@
print(' python -m pip install scikit-build')
sys.exit(1)

from pathlib import Path
this_directory = Path(__file__).parent
setup_readme_text = (this_directory / "setup_readme.md").read_text()

#include_dirs=[np.get_include()],
setup(
name='itk-tubetk',
Expand All @@ -21,7 +25,7 @@
package_dir={'itk': 'itk'},
download_url=r'https://github.com/InsightSoftwareConsortium/ITKTubeTK',
description=r'An open-source toolkit, led by Kitware, Inc., for the segmentation, registration, and analysis of tubes and surfaces in images.',
long_description='file:setup_readme.md',
long_description=setup_readme_text,
long_description_content_type='text/markdown',
classifiers=[
"License :: OSI Approved :: Apache Software License",
Expand Down

0 comments on commit fa9d2bf

Please sign in to comment.