-
Notifications
You must be signed in to change notification settings - Fork 6
/
setup.py
36 lines (33 loc) · 935 Bytes
/
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
from setuptools import setup
from pathlib import Path
version = {}
with open("gadgetron/version.py") as fp:
exec(fp.read(), version)
# later on we use: version['__version__']
this_directory = Path(__file__).parent
long_description = (this_directory / "README.md").read_text()
setup(
name='gadgetron',
version=version['version'],
packages=[
'gadgetron',
'gadgetron.util',
'gadgetron.external',
'gadgetron.examples',
'gadgetron.legacy',
'gadgetron.types'
],
url='',
license='MIT',
author='Kristoffer Langeland Knudsen',
author_email='[email protected]',
description='Python interface for Gadgetron',
long_description = long_description,
long_description_content_type='text/markdown',
install_requires=[
'numpy>=1.22',
'ismrmrd>=1.12.5',
'pyFFTW>=0.11',
'multimethod>=1.0'
]
)