-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
31 lines (29 loc) · 982 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
from setuptools import setup, find_packages
setup(
name='qsm-forward',
version='0.24',
packages=find_packages(),
include_package_data=True,
package_data={ 'qsm_forward': ['label.json'] },
url='https://github.com/astewartau/qsm-forward',
author='Ashley Stewart',
author_email='[email protected]',
description='A forward-model simulation for Quantitative Susceptibility Mapping',
long_description=open('README.md').read(),
long_description_content_type='text/markdown',
install_requires=[
'numpy',
'nilearn',
'dipy'
],
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: Science/Research',
'License :: OSI Approved :: GNU General Public License v3 (GPLv3)',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.8',
],
entry_points={
'console_scripts': ['qsm-forward=qsm_forward.main:main'],
},
)