-
Notifications
You must be signed in to change notification settings - Fork 38
/
setup.py
68 lines (63 loc) · 2.19 KB
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
#!/usr/bin/env python
# -*- coding: utf-8 -*-
import io
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)
setuptools.setup(
name='dicomweb-client',
version=version,
description='Client for DICOMweb RESTful services.',
long_description=long_description,
long_description_content_type='text/markdown',
author='Markus D. Herrmann',
maintainer='Markus D. Herrmann',
url='https://github.com/ImagingDataCommons/dicomweb-client',
license='MIT',
platforms=['Linux', 'MacOS', 'Windows'],
classifiers=[
'Environment :: Web Environment',
'License :: OSI Approved :: MIT License',
'Operating System :: MacOS',
'Operating System :: Microsoft :: Windows',
'Operating System :: POSIX :: Linux',
'Intended Audience :: Science/Research',
'Topic :: Internet :: WWW/HTTP',
'Topic :: Multimedia :: Graphics',
'Topic :: Scientific/Engineering :: Information Analysis',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
'Programming Language :: Python :: 3.11',
'Development Status :: 4 - Beta',
],
entry_points={
'console_scripts': ['dicomweb_client = dicomweb_client.cli:_main'],
},
include_package_data=True,
packages=setuptools.find_packages('src'),
package_dir={'': 'src'},
extras_require={
'gcp': [
'dataclasses>=0.8; python_version=="3.6"',
'google-auth>=1.6',
],
},
python_requires='>=3.6',
install_requires=[
'numpy>=1.19',
'requests>=2.18',
'retrying>=1.3.3',
'Pillow>=8.3',
'pydicom>=2.2',
'typing-extensions>=4.0; python_version < "3.8.0"'
]
)