-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathsetup.py
More file actions
35 lines (32 loc) · 1.19 KB
/
setup.py
File metadata and controls
35 lines (32 loc) · 1.19 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
# -*- coding: utf-8 -*-
from distutils.core import setup
from mrr import __version__
setup(name='mrr',
version=__version__,
description="Pure python package to analyze MRR-phase-data",
long_description="""
mrr is a pure python package for analyzing phasedata obtained with
Magnetic Resonance Rheology. It provides simple data structures and
functions to work with the phase data, vizualize it and save the data.
""",
author='Sebastian Theilenberg',
author_email='theilenberg@hiskp.uni-bonn.de',
url="https://github.com/theilen/PyMRR.git",
packages=["mrr",
"mrr.arc",
"mrr.bvalue",
"mrr.coordinates",
"mrr.mrrcore",
"mrr.plotting",
"mrr.read",
"mrr.timeline",
"mrr.unwrapping",
"mrr.unwrapping.py_unwrap",
"mrr.unwrapping.py_unwrap.algorithms",
"mrr.unwrapping.py_unwrap.array_manipulation",
"mrr.unwrapping.py_unwrap.qualitymaps",
"mrr.waveform",
"mrr.waveform.tektronix",
"mrr.write"
]
)