mirror of https://github.com/python/cpython
simple setup.py to install some interesting scripts in $(prefix)/bin.
This commit is contained in:
parent
a5f8c42268
commit
da760c488f
|
@ -0,0 +1,16 @@
|
||||||
|
from distutils.core import setup
|
||||||
|
|
||||||
|
setup(
|
||||||
|
scripts=[
|
||||||
|
'byteyears.py',
|
||||||
|
'checkpyc.py',
|
||||||
|
'copytime.py',
|
||||||
|
'crlf.py',
|
||||||
|
'dutree.py',
|
||||||
|
'ftpmirror.py',
|
||||||
|
'h2py.py',
|
||||||
|
'lfcr.py',
|
||||||
|
'../../Lib/tabnanny.py',
|
||||||
|
'untabify.py',
|
||||||
|
],
|
||||||
|
)
|
Loading…
Reference in New Issue