-
Notifications
You must be signed in to change notification settings - Fork 37
/
Copy pathsetup.py
45 lines (41 loc) · 1.41 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
#!/usr/bin/env python
# -*- coding: utf-8 -*-
import io
import re
import setuptools
with io.open('src/highdicom/version.py', 'rt', encoding='utf8') as f:
version = re.search(r'__version__ = \'(.*?)\'', f.read()).group(1)
setuptools.setup(
name='highdicom',
version=version,
description='High-level DICOM abstractions.',
author='Markus D. Herrmann',
maintainer='Markus D. Herrmann',
url='https://github.com/mghcomputationalpathology/highdicom',
license='MIT',
platforms=['Linux', 'MacOS', 'Windows'],
classifiers=[
'Operating System :: MacOS',
'Operating System :: Microsoft :: Windows',
'Operating System :: POSIX :: Linux',
'License :: OSI Approved :: MIT License',
'Intended Audience :: Science/Research',
'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',
'Development Status :: 4 - Beta',
],
include_package_data=True,
packages=setuptools.find_packages('src'),
package_dir={'': 'src'},
python_requires='>=3.6',
install_requires=[
'pydicom>=1.4,!=2.1.0,!=2.1.1',
'numpy>=1.19',
'pillow>=6.0'
],
)