mirror of
https://github.com/izzy2lost/UnrealEngineUWP.git
synced 2026-03-26 18:15:20 -07:00
Files
d237fc79489446cbb7c508220e2f105664704b4e
21 lines
421 B
Python
21 lines
421 B
Python
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',
|
|||
],
|
|||
)
|