Skip to content

Commit

Permalink
Add README content to package description
Browse files Browse the repository at this point in the history
  • Loading branch information
hackermd committed Mar 3, 2022
1 parent 984dde6 commit 1546e6c
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,11 @@
import re

import setuptools
from pathlib import Path

root_directory = Path(__file__).parent
readme_filepath = root_directory.joinpath('README.md')
long_description = readme_filepath.read_text()

with io.open('src/dicomweb_client/__init__.py', 'rt', encoding='utf8') as f:
version = re.search(r'__version__ = \'(.*?)\'', f.read()).group(1)
Expand All @@ -13,9 +18,10 @@
name='dicomweb-client',
version=version,
description='Client for DICOMweb RESTful services.',
long_description=long_description,
author='Markus D. Herrmann',
maintainer='Markus D. Herrmann',
url='https://github.com/mghcomputationalpathology/dicomweb-client',
url='https://github.com/herrmannlab/dicomweb-client',
license='MIT',
platforms=['Linux', 'MacOS', 'Windows'],
classifiers=[
Expand Down

0 comments on commit 1546e6c

Please sign in to comment.