Esempio n. 1
0
 def finalize_options(self):
     fancy_getopt(self.user_options, {}, self, None)
Esempio n. 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
Esempio n. 3
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
Esempio n. 4
0
 def finalize_options(self):
     fancy_getopt(self.user_options, {}, self, None)