We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 21df167 commit 1f35f4dCopy full SHA for 1f35f4d
setup.py
@@ -7,6 +7,9 @@
7
descr = """PySurfer: Python / FreeSurfer / Mayavi2 for brain imaging"""
8
9
import os
10
+# deal with MPL sandbox violations during easy_install
11
+os.environ['MPLCONFIGDIR'] = '.'
12
+
13
import surfer
14
15
DISTNAME = 'pysurfer'
@@ -19,9 +22,6 @@
19
22
DOWNLOAD_URL = 'https://github.com/nipy/PySurfer'
20
23
VERSION = surfer.__version__
21
24
-# deal with MPL sandbox violations during easy_install
-os.environ['MPLCONFIGDIR'] = '.'
-
25
import setuptools # we are using a setuptools namespace
26
from numpy.distutils.core import setup
27
0 commit comments