Exemplo n.º 1
0
 def __init__(self, *args, **kwargs):
     fin = os.popen('git log --summary --stat --no-merges --date=short',
                    'r')
     fout = open('ChangeLog', 'w')
     fout.write(fin.read())
     fout.close()
     sdist.__init__(self, *args)
Exemplo n.º 2
0
 def __init__(self, cmake, dist):
     _sdist_orig.__init__(self, dist)
Exemplo n.º 3
0
Arquivo: _setup.py Projeto: srothan/io
 def __init__ (self, *a, **kw) :
     sdist_orig.__init__(self, *a, **kw)
Exemplo n.º 4
0
 def __init__(self, *args, **kwargs):
     dSDist.__init__(self, *args, **kwargs)
Exemplo n.º 5
0
 def __init__(self, *args, **kwargs) -> None:
     sdist.__init__(self, *args, **kwargs)
     UIMakeMixin.__init__(self)
Exemplo n.º 6
0
 def __init__(self, *args, **kwargs):
     dSDist.__init__(self, *args, **kwargs)
Exemplo n.º 7
0
 def __init__(self, *args, **kwargs):
         fin = os.popen('git log --summary --stat --no-merges --date=short', 'r')
         fout = open('ChangeLog', 'w')
         fout.write(fin.read())
         fout.close()
         sdist.__init__(self, *args)