forked from imr-framework/pypulseq
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
31 lines (29 loc) · 1.06 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
import setuptools
try: # Unicode decode error on Windows
with open("README.md", "r") as fh:
long_description = fh.read()
except:
long_description = 'Pulseq in Python'
setuptools.setup(
name="pypulseq",
version="1.2.0.post3",
author="Keerthi Sravan Ravi",
author_email="[email protected]",
description="Pulseq in Python",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/imr-framework/pypulseq",
packages=setuptools.find_packages(),
include_package_data=True,
package_data={'pypulseq.utils.SAR': ['QGlobal.mat']},
install_requires=['matplotlib>=3.0.3',
'numpy>=1.16.3',
'scipy>=1.4.1'],
license='License :: OSI Approved :: GNU Affero General Public License v3',
classifiers=[
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"License :: OSI Approved :: GNU Affero General Public License v3",
"Operating System :: OS Independent",
],
)