Exemplo n.º 1
0
 def __init__(self, distribution):
     """ Constructor. """
     
     self.verbose = None
     sdist_.__init__(self, distribution)
     self.__buildConfiguration = BuildConfiguration()
     
     self.dist_dir = self.__buildConfiguration.distDirectory
Exemplo n.º 2
0
    def __init__(self, distribution):
        """ Constructor. """

        self.verbose = None
        sdist_.__init__(self, distribution)
        self.__buildConfiguration = BuildConfiguration()

        self.dist_dir = self.__buildConfiguration.distDirectory
Exemplo n.º 3
0
 def __init__(self, *args, **kwargs):
     import Cython.Build
     Cython.Build.cythonize(pyx_ext_modules, verbose=True, language_level=3)
     sdist.__init__(self, *args, **kwargs)
Exemplo n.º 4
0
 def __init__(self, dist):
     sdist.__init__(self, dist)
     dist.metadata.version = get_version()
Exemplo n.º 5
0
 def __init__(self, *a, **kw):
     old_sdist.__init__(self, *a, **kw)
Exemplo n.º 6
0
 def __init__(self, *args, **kwargs):
     _sdist.__init__(self, *args, **kwargs)
     self.packaging = "default value for this option"
Exemplo n.º 7
0
 def __init__(self, *args, **kwargs):
     cythonize('wsaccel/utf8validator.pyx')
     cythonize('wsaccel/xormask.pyx')
     sdist.__init__(self, *args, **kwargs)
Exemplo n.º 8
0
 def __init__(self, *args, **kwargs):
     for src in glob('msgpack/*.pyx'):
         cython_compiler.compile(glob('msgpack/*.pyx'),
                                 cython_compiler.default_options)
     sdist.__init__(self, *args, **kwargs)
Exemplo n.º 9
0
 def __init__(self, *args, **kwargs):
     for src in glob('salt/msgpack/*.pyx'):
         cython_compiler.compile(glob('msgpack/*.pyx'),
                                 cython_compiler.default_options)
     sdist.__init__(self, *args, **kwargs)
Exemplo n.º 10
0
 def __init__(self, *a, **kw):
     old_sdist.__init__(self, *a, **kw)
Exemplo n.º 11
0
 def __init__(self, *args, **kwargs):
     cy_opt = cython_compiler.default_options.copy()
     cy_opt["cplus"] = True
     for src in glob("msgpack/*.pyx"):
         cython_compiler.compile(glob("msgpack/*.pyx"), cy_opt)
     sdist.__init__(self, *args, **kwargs)
Exemplo n.º 12
0
 def __init__(self, *args, **kwargs):
   for src in glob('timeuuid/*.pyx'):
     print src
     Main.compile(glob('timeuuid/*.pyx'),
                  Main.default_options)
   sdist.__init__(self, *args, **kwargs)
Exemplo n.º 13
0
 def __init__(self, *args, **kwargs):
     cythonize('msgpack/_cmsgpack.pyx')
     sdist.__init__(self, *args, **kwargs)
Exemplo n.º 14
0
 def __init__(self, *args, **kwargs):
     sdist.__init__(self, *args, **kwargs)
     self.unstable = False
Exemplo n.º 15
0
 def __init__(self, *args, **kwargs):
     for src in glob('msgpack/*.pyx'):
         cythonize(src)
     sdist.__init__(self, *args, **kwargs)
Exemplo n.º 16
0
 def __init__(self, *args, **kwargs):
     sdist.__init__(self, *args, **kwargs)
     self.unstable = False
Exemplo n.º 17
0
 def __init__(self, *args, **kwargs):
     cythonize("msgpack/_cmsgpack.pyx")
     sdist.__init__(self, *args, **kwargs)
Exemplo n.º 18
0
 def __init__(self, *args, **kwargs):
     for src in glob('msgpack/*.pyx'):
         cythonize(src)
     sdist.__init__(self, *args, **kwargs)
Exemplo n.º 19
0
 def __init__(self, *args, **kwargs):
   for src in glob('rpclib/msgpack/*.pyx'):
     sys.stderr.write("@@Sdist source:%s\n" % str(src))
     cythonize(src)
   sdist.__init__(self, *args, **kwargs)
Exemplo n.º 20
0
 def __init__(self, *args, **kwargs):
     cythonize('wsaccel/utf8validator.pyx')
     cythonize('wsaccel/xormask.pyx')
     sdist.__init__(self, *args, **kwargs)
Exemplo n.º 21
0
 def __init__(self, *args, **kwargs):
     for src in glob('libuuid/*.pyx'):
         cython_compiler.compile(glob('libuuid/*.pyx'),
                                 cython_compiler.default_options)
     sdist.__init__(self, *args, **kwargs)
Exemplo n.º 22
0
 def __init__(self, *args, **kwargs):
     _sdist.__init__(self, *args, **kwargs)
     self.packaging = "default value for this option"
Exemplo n.º 23
0
 def __init__(self, *args, **kwargs):
     for src in glob('timeuuid/*.pyx'):
         print src
         Main.compile(glob('timeuuid/*.pyx'), Main.default_options)
     sdist.__init__(self, *args, **kwargs)