-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
26 lines (23 loc) · 1.01 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
import os
import setuptools
# read content of README.md
with open(os.path.join(os.path.abspath(os.path.dirname(__file__)), 'README.md'), encoding='utf-8') as f:
long_description = f.read()
setuptools.setup(
name="img_quality_cil_stir",
use_scm_version={'fallback_version': 'unkown'},
setup_requires=['setuptools_scm', 'setuptools_scm_git_archive'],
author="Georg Schramm, Junqi Tang, Imraj Singh",
author_email="[email protected]",
description="minimal python package for an image quality callback for CIL and STIR images",
long_description=long_description,
license='Apache License 2.0',
long_description_content_type="text/markdown",
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",],
python_requires='>=3',
install_requires=['numpy >= 1.0', 'scipy >= 1.0', 'pandas >= 1.0', 'tensorboard >= 2.0', 'tensorboardx >= 2.0'],
packages=['img_quality_cil_stir'],
)