Staging
v0.5.1
https://github.com/python/cpython
Revision 2032722e514a20b5f5321f07427dc2cea6e0d634 authored by Antoine Pitrou on 24 May 2009, 20:39:11 UTC, committed by Antoine Pitrou on 24 May 2009, 20:39:11 UTC
svn+ssh://pythondev@svn.python.org/python/trunk

........
  r72898 | antoine.pitrou | 2009-05-24 22:23:57 +0200 (dim., 24 mai 2009) | 6 lines

  Issue #3585: Add pkg-config support.

  It creates a python-2.7.pc file and a python.pc symlink in the
  $(LIBDIR)/pkgconfig directory. Patch by Clinton Roy.
........
1 parent 70ccd16
Raw File
Tip revision: 2032722e514a20b5f5321f07427dc2cea6e0d634 authored by Antoine Pitrou on 24 May 2009, 20:39:11 UTC
Merged revisions 72898 via svnmerge from
Tip revision: 2032722
setup.py
from distutils.core import setup

if __name__ == '__main__':
    setup(
      scripts=[
        'byteyears.py',
        'checkpyc.py',
        'copytime.py',
        'crlf.py',
        'dutree.py',
        'ftpmirror.py',
        'h2py.py',
        'lfcr.py',
        '../i18n/pygettext.py',
        'logmerge.py',
        '../../Lib/tabnanny.py',
        '../../Lib/timeit.py',
        'untabify.py',
        ],
      )
back to top