-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
executable file
·43 lines (41 loc) · 2.1 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
#!/usr/bin/env pytho6
# -*- coding: utf-8 -*-
try:
from setuptools import setup, find_packages
except ImportError:
from distutils.core import setup, find_packages
setup(
name='brainload',
version='0.3.5',
description='Load FreeSurfer brain imaging data with minimal cognitive load.',
long_description='Python module to reduce your brain load while accessing FreeSurfer brain surface meshes and morphometry data files for single subjects and groups.',
keywords='neuroimaging freesurfer nibabel load mgh curv MRI morphometry',
author='Tim Schäfer',
author_email='[email protected]',
url='https://github.com/dfsp-spirit/brainload',
packages=find_packages(where='src'),
classifiers = ['Development Status :: 3 - Alpha', # See https://pypi.org/pypi?%3Aaction=list_classifiers for full classifier list
'Intended Audience :: Developers',
'Intended Audience :: Science/Research',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7'],
license='MIT',
setup_requires=['pytest-runner'],
tests_require=['pytest', 'pytest-cov', 'pytest-console-scripts', 'pytest-runner', 'tox'],
install_requires=['numpy', 'nibabel'],
package_dir = {'': 'src'}, # The root directory that contains the source for the modules (relative to setup.py) is ./src/,
include_package_data=True, # respect MANIFEST.in at install time
zip_safe=False,
entry_points = {
'console_scripts': [
'visualize_verts = brainload.clients.visualize_verts:visualize_verts',
'brain_mesh_info= brainload.clients.brain_mesh_info:brain_mesh_info',
'brain_vol_info = brainload.clients.brain_vol_info:brain_vol_info',
'brain_morph_info = brainload.clients.brain_morph_info:brain_morph_info',
'brain_qa = brainload.clients.brain_consistency:brain_consistency',
]
}
)