forked from openmiblab/pckg-mdreg
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
54 lines (47 loc) · 2.38 KB
/
setup.py
File metadata and controls
54 lines (47 loc) · 2.38 KB
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
from setuptools import setup
# For more information about uploading the python package to PyPI, please check the link:
# https://github.com/judy2k/publishing_python_packages_talk
# Use README.md as the long description
with open('README.md', encoding='utf-8') as f:
long_description = f.read()
VERSION = "0.0.6"
if __name__ == '__main__':
setup(
name="mdr-library",
version=VERSION,
author="Kanishka Sharma, Joao Almeida e Sousa and Steven Sourbron",
author_email="kanishka.sharma@sheffield.ac.uk, j.g.sousa@sheffield.ac.uk, s.sourbron@sheffield.ac.uk",
description="Open-source, platform independent library for Model Driven Registration (MDR) in quantitative renal MRI",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/QIB-Sheffield/MDR-Library",
license='Apache Software License (http://www.apache.org/licenses/LICENSE-2.0)',
python_requires='>=3.6, <4',
packages=['MDR'],
install_requires=["numpy", "pandas", "SimpleITK", "itk-elastix"],
include_package_data=True,
keywords=['python', "medical imaging", "DICOM", "MRI", "renal", "kidney", "motion correction", "registration"],
# Classifiers - the purpose is to create a wheel and upload it to PYPI
classifiers=[
# How mature is this project? Common values are
# 3 - Alpha
# 4 - Beta
# 5 - Production/Stable
'Development Status :: 3 - Alpha',
# Indicate who your project is intended for
'Intended Audience :: Developers',
'Intended Audience :: Science/Research',
'Topic :: Scientific/Engineering',
'Environment :: Console',
'Operating System :: OS Independent',
'Programming Language :: Python :: 3',
# Specify the Python versions you support here. In particular, ensure
# that you indicate you support Python 3. These classifiers are *not*
# checked by 'pip install'. See instead 'python_requires' below.
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
# Pick your license as you wish
'License :: OSI Approved :: Apache Software License',
],
)