예제 #1
0
 def finalize_options(self):
     fancy_getopt(self.user_options, {}, self, None)
예제 #2
0
 def finalize_options(self):
     args, obj = fancy_getopt(self.user_options, {}, None, None)
     # Ugly as sin, but distutils forced me to do it :(
     # All I wanted was this command to default to quiet...
     if "--verbose" not in args and "-v" not in args:
         self.verbose = 0
예제 #3
0
파일: setup.py 프로젝트: waiebank/intermine
 def finalize_options(self):
     args, obj = fancy_getopt(self.user_options, {}, None, None)
     # Ugly as sin, but distutils forced me to do it :(
     # All I wanted was this command to default to quiet...
     if "--verbose" not in args and "-v" not in args:
         self.verbose = 0
예제 #4
0
 def finalize_options(self):
     fancy_getopt(self.user_options, {}, self, None)