mirror of
https://github.com/i2p/i2p.i2p.git
synced 2026-05-15 03:05:13 +00:00
20 lines
452 B
Python
20 lines
452 B
Python
#! /usr/bin/env python
|
|
|
|
# --------------------------------------------------
|
|
# py2exe_demo.py: Sample setup script for py2exe
|
|
# --------------------------------------------------
|
|
|
|
"""
|
|
Sample setup script for py2exe.
|
|
|
|
Use 'python py2exe_demo.py install' to build an exe.
|
|
|
|
A zip archive of the distribution is about 630 KB
|
|
(Delete _ssl.pyd to save space).
|
|
"""
|
|
|
|
from distutils.core import setup
|
|
import py2exe
|
|
|
|
setup(console=["../stream_eepget.py"])
|