Re: distutils - Is is possible to install without the .py extensions

2008-03-08 Thread Robert Kern
Jari Aalto wrote: > * Fri 2008-03-07 Robert Kern <[EMAIL PROTECTED]> gmane.comp.python.general > * Message-Id: [EMAIL PROTECTED] > > setup(name='program', >>> ... > scripts = ['program,py'], > ) > that the the result is: > > /usr/bin/program > >>

Re: distutils - Is is possible to install without the .py extensions

2008-03-08 Thread Jari Aalto
* Fri 2008-03-07 Robert Kern <[EMAIL PROTECTED]> gmane.comp.python.general * Message-Id: [EMAIL PROTECTED] setup(name='program', >> ... scripts = ['program,py'], ) that the the result is: /usr/bin/program instead of: /us

Re: distutils - Is is possible to install without the .py extensions

2008-03-07 Thread Robert Kern
Jari Aalto wrote: > * Fri 2008-03-07 Robert Kern <[EMAIL PROTECTED]> gmane.comp.python.general > * Message-Id: [EMAIL PROTECTED] >> Jari Aalto wrote: >>> #!/usr/bin/python >>> >>> from distutils.core import setup >>> import glob >>> >>> setup(name='program', > ... >>> scri

Re: distutils - Is is possible to install without the .py extensions

2008-03-07 Thread Jari Aalto
* Fri 2008-03-07 Robert Kern <[EMAIL PROTECTED]> gmane.comp.python.general * Message-Id: [EMAIL PROTECTED] > Jari Aalto wrote: >> #!/usr/bin/python >> >> from distutils.core import setup >> import glob >> >> setup(name='program', ... >> scripts = ['program,py'], >>

Re: distutils - Is is possible to install without the .py extensions

2008-03-07 Thread Robert Kern
Jari Aalto wrote: > Given following setup.py stanza: > > #!/usr/bin/python > > from distutils.core import setup > import glob > > setup(name='program', > description='', > keywords='', > version='', > url='', > download_url='', >

distutils - Is is possible to install without the .py extensions

2008-03-07 Thread Jari Aalto
Given following setup.py stanza: #!/usr/bin/python from distutils.core import setup import glob setup(name='program', description='', keywords='', version='', url='', download_url='', license='', author='',