forked from nipy/nibabel
-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
MISC - deleting clib build from windows Makefile
- Loading branch information
1 parent
add6af3
commit b499f4c
Showing
4 changed files
with
33 additions
and
65 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,7 @@ | ||
*.kpf | ||
*-stamp | ||
*/*/*-stamp | ||
build | ||
*.swp | ||
*.pyc | ||
*.pyo | ||
nifti/_clib.so | ||
nifti/clib.py | ||
nibabel.egg-info/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -18,7 +18,7 @@ | |
from distutils.core import setup | ||
|
||
# For some commands, use setuptools. | ||
if len(set(('develop', 'bdist_egg', 'bdist_rpm', 'bdist', 'bdist_dumb', | ||
if len(set(('develop', 'bdist_egg', 'bdist_rpm', 'bdist', 'bdist_dumb', | ||
'bdist_wininst', 'install_egg_info', 'egg_info', 'easy_install', | ||
)).intersection(sys.argv)) > 0: | ||
# setup_egg imports setuptools setup, thus monkeypatching distutils. | ||
|
@@ -33,22 +33,22 @@ | |
|
||
def main(**extra_args): | ||
setup(name = 'nibabel', | ||
version = '1.0.0', | ||
author = 'Matthew Brett and Michael Hanke', | ||
author_email = 'NiBabel List <[email protected]>', | ||
license = 'MIT License', | ||
url = 'http://niftilib.sf.net/pynifti', | ||
description = 'Access a multitude of neuroimaging data formats', | ||
long_description = "", | ||
packages = ['nibabel', | ||
'nibabel.externals', | ||
'nibabel.testing', | ||
'nibabel.tests'], | ||
data_files = [('nibabel/tests/data', | ||
glob(os.path.join('nibabel', 'tests', 'data', '*')))], | ||
scripts = [os.path.join('bin', 'parrec2nii')], | ||
**extra_args | ||
) | ||
version = '1.0.0', | ||
author = 'Matthew Brett and Michael Hanke', | ||
author_email = 'NiBabel List <[email protected]>', | ||
license = 'MIT License', | ||
url = 'http://niftilib.sf.net/pynifti', | ||
description = 'Access a multitude of neuroimaging data formats', | ||
long_description = "", | ||
packages = ['nibabel', | ||
'nibabel.externals', | ||
'nibabel.testing', | ||
'nibabel.tests'], | ||
data_files = [('nibabel/tests/data', | ||
glob(os.path.join('nibabel', 'tests', 'data', '*')))], | ||
scripts = [os.path.join('bin', 'parrec2nii')], | ||
**extra_args | ||
) | ||
|
||
|
||
if __name__ == "__main__": | ||
|