We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f6fd087 commit b256ad0Copy full SHA for b256ad0
setup.py
@@ -6,12 +6,13 @@
6
# from dependent packages
7
from setuptools import setup
8
9
+# module constants
10
+RADEX_BUILD = ['make', 'build', 'LOGFILE=/dev/null', 'MAXITER=999999']
11
12
# custom build
13
class Build(build):
14
def run(self):
- cmd = ['make', 'build', 'LOGFILE=/dev/null']
- cp = sprun(cmd, stdout=PIPE, stderr=PIPE,
15
+ cp = sprun(RADEX_BUILD, stdout=PIPE, stderr=PIPE,
16
cwd='ndradex/bin', check=True)
17
build.run(self)
18
0 commit comments