-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
49 lines (43 loc) · 1.86 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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
from setuptools import setup, find_packages
# get the version information from the relevant file
version = {}
with open('./cubric_mrs/_version.py') as f:
exec(f.read(), version)
setup(
name='cubric-mrs',
version=version['__version__'],
packages=find_packages(),
url='https://github.com/bennyrowland/cubric_mrs.git',
license='MIT',
author='bennyrowland',
author_email='[email protected]',
description='a collection of processing scripts for handling MRS data at CUBRIC',
entry_points={
"console_scripts": [
"mrs_mega = cubric_mrs.megapress:megapress_script",
"mrs_press = cubric_mrs.press:press_script"
]
},
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 :: Science/Research',
'Topic :: Scientific/Engineering :: Medical Science Apps.',
'Topic :: Scientific/Engineering :: Physics',
# Pick your license as you wish (should match "license" above)
'License :: OSI Approved :: MIT License',
# Specify the Python versions you support here. In particular, ensure
# that you indicate whether you support Python 2, Python 3 or both.
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.2',
'Programming Language :: Python :: 3.3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
],
install_requires=['suspect>=0.3.5', 'numpy', 'Pillow', 'pyx', 'nibabel', 'nipype'],
test_requires=['pytest']
)