コード例 #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)