mirror of
https://github.com/i2p/i2p.i2p.git
synced 2026-05-11 14:44:48 +00:00
Added py2exe example
This commit is contained in:
@@ -0,0 +1,19 @@
|
||||
#! /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"])
|
||||
Reference in New Issue
Block a user