Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]


Groups > comp.lang.python > #7049

Re: Distutils beginner question - windows

Date 2011-06-05 23:28 +1000
From Mark Hammond <skippy.hammond@gmail.com>
Subject Re: Distutils beginner question - windows
References <44bc9107-acee-4ab0-b0ca-adb3b9a7a582@glegroupsg2000goo.googlegroups.com>
Newsgroups comp.lang.python
Message-ID <mailman.2466.1307280541.9059.python-list@python.org> (permalink)

Show all headers | View raw


On 3/06/2011 6:57 PM, Seb S wrote:
>
> Hi all,
>
> Just a quick question , I have a simple script I want to convert into a windows installer and give to some friends.
> I had a look at http://docs.python.org/distutils/introduction.html  and wrote this setup script:
>
>
> #!/usr/bin/env python
>
> from distutils.core import setup
>
> setup(name="C:\data\Sendmailmsg.py",
>        version='1.0',
>        description='Python Distribution Utilities',
>        author='Sebas929    ',
>        author_email=' ',
>        url=' ',
>        py_modules=['urllib','smtplib'],
>       )
>
>
> I tried to run this  - "C:\Data\Setup.py" bdist_wininst  - in a cmd prompt.
> C:\Data\ contains my script Sendmailmsg.py and Setup.py
> I am getting the error :

I think you misunderstand what bdist_wininst is for and probably want 
py2exe (where you just tell it you want to package Sendmailmsg.py and it 
finds all other dependent modules like smtplib etc, bundles them up with 
a full python runtime and rolls it into a nice executable)

HTH,

Mark

Back to comp.lang.python | Previous | NextPrevious in thread | Find similar | Unroll thread


Thread

Distutils beginner question - windows Seb S <sebas.home1@gmail.com> - 2011-06-03 01:57 -0700
  Re: Distutils beginner question - windows Mark Hammond <skippy.hammond@gmail.com> - 2011-06-05 23:28 +1000

csiph-web